diff --git a/libcddb/.footprint b/libcddb/.footprint new file mode 100644 index 000000000..71ac08814 --- /dev/null +++ b/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/libcddb/.md5sum b/libcddb/.md5sum new file mode 100644 index 000000000..a18ba2065 --- /dev/null +++ b/libcddb/.md5sum @@ -0,0 +1 @@ +e4a7f9579956c32b7f300eb12e9ea6df libcddb-1.3.0.tar.bz2 diff --git a/libcddb/Pkgfile b/libcddb/Pkgfile new file mode 100644 index 000000000..362a7ced7 --- /dev/null +++ b/libcddb/Pkgfile @@ -0,0 +1,23 @@ +# Description: Library to access and submit data on a CDDB server. +# URL: http://libcddb.sourceforge.net/ +# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au +# Packager: Han Boetes, han at mijncomputer dot nl +# Depends on: libcdio + +name=libcddb +version=1.3.0 +release=1 +source=(http://dl.sourceforge.net/libcddb/libcddb-$version.tar.bz2) + +build() { + cd libcddb-$version + + ./configure \ + --prefix=/usr \ + --disable-nls \ + --disable-static + + make + make DESTDIR=$PKG install +} +