Created
September 27, 2014 10:41
-
-
Save zman0900/65fb66d1c3714a9807b7 to your computer and use it in GitHub Desktop.
lbzip2 PKGBUILD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Dan Ziemba <[email protected]> | |
# Contributor: Jaroslav Lichtblau <[email protected]> | |
# Contributor: Christoph Zeiler <archNOSPAM_at_moonblade.dot.org> | |
pkgname=lbzip2 | |
pkgver=2.5 | |
pkgrel=1 | |
pkgdesc="A parallel, SMP-based, bzip2-compatible compression utility" | |
arch=('i686' 'x86_64') | |
url="http://lbzip2.org/" | |
license=('GPL3') | |
depends=('glibc') | |
makedepends=('perl' 'gnulib') | |
source=("http://archive.lbzip2.org/$pkgname-$pkgver.tar.bz2") | |
sha256sums=('eec4ff08376090494fa3710649b73e5412c3687b4b9b758c93f73aa7be27555b') | |
build() { | |
cd "$srcdir/$pkgname-$pkgver" | |
./configure --prefix=/usr | |
make | |
} | |
check() { | |
cd "$srcdir/$pkgname-$pkgver" | |
make check | |
} | |
package() { | |
cd "$srcdir/$pkgname-$pkgver" | |
make DESTDIR=${pkgdir} install | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment