mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-29 13:22:21 +01:00
40 lines
911 B
Plaintext
40 lines
911 B
Plaintext
# Contributor: William Pitcock <nenolod@dereferenced.org>
|
|
# Maintainer: William Pitcock <nenolod@dereferenced.org>
|
|
pkgname=libamz
|
|
pkgver=0.0.2
|
|
pkgrel=1
|
|
pkgdesc="library and tools for accessing amazon mp3 download queues"
|
|
url="http://nenolod.net/projects/libamz"
|
|
arch="all"
|
|
license="ISC"
|
|
depends=
|
|
makedepends="libgcrypt-dev libsoup-dev libxml2-dev gtk+-dev"
|
|
install=
|
|
subpackages="$pkgname-dev"
|
|
source="http://nenolod.net/~nenolod/distfiles/$pkgname-$pkgver.tar.bz2"
|
|
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
|
|
prepare() {
|
|
cd "$_builddir"
|
|
# workaround bug in busybox
|
|
sed -e "/touch/s/0001010000/200001010000/g" \
|
|
-i configure
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
md5sums="fcecea69be7b62aa6d31b80b23e8f0db libamz-0.0.2.tar.bz2"
|