desktop/cuetools/PKGBUILD

36 lines
844 B
Bash
Raw Normal View History

2013-10-30 03:04:07 +08:00
# Contributions from Arch: https://projects.archlinux.org/svntogit/community.git/tree/trunk?h=packages/cuetools
pkgname=cuetools
2015-05-05 21:57:01 +08:00
pkgver=1.4.1
2013-10-30 03:04:07 +08:00
pkgrel=1
pkgdesc="Cue and toc file parsers and utilities"
arch=('x86_64')
url="https://github.com/svend/cuetools"
#url="http://developer.berlios.de/projects/cuetools/"
license=('GPL')
depends=('glibc')
source=("https://github.com/svend/cuetools/archive/${pkgver}.tar.gz")
2015-05-05 21:57:01 +08:00
sha512sums=('dc81e6ec756f9d040dd913e8f340be136d68619caa24bdec21364f94b4fc0ffcbcf21325c7fd53c9230d6d70a2856b45a32c5ca7f41ec76fa47298bf226d959e')
2013-10-30 03:04:07 +08:00
prepare() {
cd "$srcdir/$pkgname-$pkgver"
aclocal
autoheader
automake --force-missing --add-missing
autoconf
}
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
}