diff options
author | tnut <thierryn1 at hispeed dot ch> | 2010-02-27 18:13:09 +0100 |
---|---|---|
committer | tnut <thierryn1 at hispeed dot ch> | 2010-02-27 18:13:09 +0100 |
commit | 3b3be640bc836c05427f3a88ca537c67dd29e6dd (patch) | |
tree | 3d1b4ed54c1440f8528c60458f9ed7ab9c99d865 /test/libcddb | |
parent | 09229e9aa34ff727d19aa69bf8c3196f82d77a02 (diff) | |
download | nutyx-extra-3b3be640bc836c05427f3a88ca537c67dd29e6dd.tar.gz nutyx-extra-3b3be640bc836c05427f3a88ca537c67dd29e6dd.tar.bz2 nutyx-extra-3b3be640bc836c05427f3a88ca537c67dd29e6dd.tar.xz nutyx-extra-3b3be640bc836c05427f3a88ca537c67dd29e6dd.zip |
libcddb dans test
Diffstat (limited to 'test/libcddb')
-rw-r--r-- | test/libcddb/.footprint | 22 | ||||
-rw-r--r-- | test/libcddb/.md5sum | 1 | ||||
-rw-r--r-- | test/libcddb/Pkgfile | 23 |
3 files changed, 46 insertions, 0 deletions
diff --git a/test/libcddb/.footprint b/test/libcddb/.footprint new file mode 100644 index 000000000..71ac08814 --- /dev/null +++ b/test/libcddb/.footprint @@ -0,0 +1,22 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/cddb_query +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/cddb/ +-rw-r--r-- root/root usr/include/cddb/cddb.h +-rw-r--r-- root/root usr/include/cddb/cddb_cmd.h +-rw-r--r-- root/root usr/include/cddb/cddb_config.h +-rw-r--r-- root/root usr/include/cddb/cddb_conn.h +-rw-r--r-- root/root usr/include/cddb/cddb_disc.h +-rw-r--r-- root/root usr/include/cddb/cddb_error.h +-rw-r--r-- root/root usr/include/cddb/cddb_log.h +-rw-r--r-- root/root usr/include/cddb/cddb_site.h +-rw-r--r-- root/root usr/include/cddb/cddb_track.h +-rw-r--r-- root/root usr/include/cddb/version.h +drwxr-xr-x root/root usr/lib/ +-rwxr-xr-x root/root usr/lib/libcddb.la +lrwxrwxrwx root/root usr/lib/libcddb.so -> libcddb.so.2.2.3 +lrwxrwxrwx root/root usr/lib/libcddb.so.2 -> libcddb.so.2.2.3 +-rwxr-xr-x root/root usr/lib/libcddb.so.2.2.3 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/libcddb.pc diff --git a/test/libcddb/.md5sum b/test/libcddb/.md5sum new file mode 100644 index 000000000..dc62f7a42 --- /dev/null +++ b/test/libcddb/.md5sum @@ -0,0 +1 @@ +8bb4a6f542197e8e9648ae597cd6bc8a libcddb-1.3.2.tar.bz2 diff --git a/test/libcddb/Pkgfile b/test/libcddb/Pkgfile new file mode 100644 index 000000000..b479a19d5 --- /dev/null +++ b/test/libcddb/Pkgfile @@ -0,0 +1,23 @@ +# Description: Bibliothèque pour accéder à un serveur CDDB et soumettre \ +# des données +# URL: http://libcddb.sourceforge.net/ +# Maintainer: Danny Rawlins <monster dot romster at gmail dot com> +# Packager: Han Boetes <han at mijncomputer dot nl> +# Depends on: libcdio + +name=libcddb +version=1.3.2 +release=1 +source=( http://downloads.sourceforge.net/$name/$name-$version.tar.bz2 ) + +build() { + cd $name-$version + + ./configure \ + --prefix=/usr \ + --disable-nls \ + --disable-static + + make + make DESTDIR=$PKG install +} |