blob: 482567e753991547e8443c6b2d0b0289fd02bf84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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
}
|