mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
21 lines
671 B
Bash
21 lines
671 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
|
|
# Contributor: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
|
|
|
|
pkgname=fillets-ng-data
|
|
pkgver=0.9.0
|
|
pkgrel=1
|
|
pkgdesc="Data files for the port of the wonderful puzzle game Fish Fillets."
|
|
url="http://fillets.sf.net/"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL')
|
|
source=(http://downloads.sourceforge.net/fillets/$pkgname-$pkgver.tar.gz)
|
|
|
|
md5sums=('5d733a990212a4b038d1ee76f700c54e')
|
|
|
|
build() {
|
|
cd ${srcdir}/$pkgname-$pkgver
|
|
|
|
install -d ${pkgdir}/usr/share/fillets-ng || return 1
|
|
cp -r ${srcdir}/$pkgname-$pkgver/* ${pkgdir}/usr/share/fillets-ng || return 1
|
|
}
|