diff options
Diffstat (limited to 'repo/libcddb/libcddb.xibuild')
-rw-r--r-- | repo/libcddb/libcddb.xibuild | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/repo/libcddb/libcddb.xibuild b/repo/libcddb/libcddb.xibuild new file mode 100644 index 0000000..482567e --- /dev/null +++ b/repo/libcddb/libcddb.xibuild @@ -0,0 +1,27 @@ +#!/bin/sh + +NAME="libcddb" +DESC="Library that implements the different protocols (CDDBP, HTTP, SMTP) to access data on a CDDB server (e.g. http://freedb.org)." + +MAKEDEPS="" + +PKG_VER=1.3.2 +SOURCE="https://downloads.sourceforge.net/libcddb/libcddb-$PKG_VER.tar.bz2" + +prepare() { + apply_patches +} + +build() { + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info + make +} + +package() { + make DESTDIR="$PKG_DEST" install +} + |