diff options
author | tnut <thierryn1 at hispeed dot ch> | 2010-02-27 19:18:58 +0100 |
---|---|---|
committer | tnut <thierryn1 at hispeed dot ch> | 2010-02-27 19:18:58 +0100 |
commit | 08a10fca542a593217115633c460c31946c542ea (patch) | |
tree | 427ce58d08f3c1500d6a5d0cbf3c6aae8fbe5726 /extra | |
parent | efdadaddd50fa4e1f8671fb49ba3c0016fc7d296 (diff) | |
download | nutyx-pakxe-08a10fca542a593217115633c460c31946c542ea.tar.gz nutyx-pakxe-08a10fca542a593217115633c460c31946c542ea.tar.bz2 nutyx-pakxe-08a10fca542a593217115633c460c31946c542ea.tar.xz nutyx-pakxe-08a10fca542a593217115633c460c31946c542ea.zip |
libcddb dans extra
Diffstat (limited to 'extra')
-rw-r--r-- | extra/libcddb/.footprint | 22 | ||||
-rw-r--r-- | extra/libcddb/.md5sum | 1 | ||||
-rw-r--r-- | extra/libcddb/Pkgfile | 23 |
3 files changed, 46 insertions, 0 deletions
diff --git a/extra/libcddb/.footprint b/extra/libcddb/.footprint new file mode 100644 index 000000000..71ac08814 --- /dev/null +++ b/extra/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/extra/libcddb/.md5sum b/extra/libcddb/.md5sum new file mode 100644 index 000000000..dc62f7a42 --- /dev/null +++ b/extra/libcddb/.md5sum @@ -0,0 +1 @@ +8bb4a6f542197e8e9648ae597cd6bc8a libcddb-1.3.2.tar.bz2 diff --git a/extra/libcddb/Pkgfile b/extra/libcddb/Pkgfile new file mode 100644 index 000000000..b479a19d5 --- /dev/null +++ b/extra/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 +} |