1
0
forked from ports/opt

libcddb: initial import

This commit is contained in:
Simon Gloner 2006-04-10 10:47:17 +00:00
parent 367c25fc3b
commit 1830c51bf4
3 changed files with 43 additions and 0 deletions

23
libcddb/.footprint Normal file
View File

@ -0,0 +1,23 @@
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/
-rw-r--r-- root/root usr/lib/libcddb.a
-rwxr-xr-x root/root usr/lib/libcddb.la
lrwxrwxrwx root/root usr/lib/libcddb.so -> libcddb.so.2.1.1
lrwxrwxrwx root/root usr/lib/libcddb.so.2 -> libcddb.so.2.1.1
-rwxr-xr-x root/root usr/lib/libcddb.so.2.1.1
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/libcddb.pc

1
libcddb/.md5sum Normal file
View File

@ -0,0 +1 @@
2861fe1299da273fe68783abecc3fe62 libcddb-1.2.1.tar.bz2

19
libcddb/Pkgfile Normal file
View File

@ -0,0 +1,19 @@
# Description: C library to access and submit data on a CDDB server
# URL: http://libcddb.sf.net
# Maintainer: Simon Gloßner, viper at hometux dot de
# Packager: Han Boetes, han at mijncomputer dot nl
name=libcddb
version=1.2.1
release=1
source=(http://dl.sourceforge.net/$name/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--disable-nls
make
make DESTDIR=$PKG install
}