mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
21 lines
646 B
Bash
21 lines
646 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
||
|
# Contributor: Zhukov Pavel <gelios@gmail.com>
|
||
|
|
||
|
pkgname=dynamite
|
||
|
pkgver=0.1.1
|
||
|
pkgrel=1
|
||
|
pkgdesc="Dynamite is a tool and library for decompressing data compressed with PKWARE Data Compression Library"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://synce.sourceforge.net/"
|
||
|
license=("GPL")
|
||
|
source=(http://downloads.sourceforge.net/sourceforge/synce/libdynamite-$pkgver.tar.gz)
|
||
|
md5sums=('238bf243dba2166a2e0e141b18065235')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/libdynamite-$pkgver
|
||
|
./configure --prefix=/usr
|
||
|
make || return 1
|
||
|
make DESTDIR=$startdir/pkg install
|
||
|
}
|