diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-02-22 03:50:02 +0000 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-02-22 03:50:02 +0000 |
commit | d681aef185938981d5b5eb582d09fbc49927cf24 (patch) | |
tree | adbebafcefcedb7b35b765eb8bc451eac8482d32 /community/fatsort | |
parent | 96cf9235f114b8d960c16a8625937b16979ae1aa (diff) |
Sat Feb 22 03:44:10 UTC 2014
Diffstat (limited to 'community/fatsort')
-rw-r--r-- | community/fatsort/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/community/fatsort/PKGBUILD b/community/fatsort/PKGBUILD new file mode 100644 index 000000000..b0119a1c9 --- /dev/null +++ b/community/fatsort/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 106059 2014-02-21 19:05:15Z anatolik $ +# Maintainer: Anatol Pomozov <anatol.pomozov@gmail.com> +# Contributor: birdflesh <antkoul at gmail dot com> +# Contributor: Natan Vivo <nvivo64_gmail_com> +# Contributor: rabyte <rabyte*gmail> +# Contributor: Simon Morgan <simon@16hz.net> + +pkgname=fatsort +pkgver=1.2.355 +pkgrel=1 +pkgdesc='Sorts directory structures of FAT16 and FAT32 file systems' +arch=(i686 x86_64) +url='http://fatsort.sourceforge.net' +license=(GPL) +depends=(glibc) +makedepends=(help2man) +source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.gz) +sha256sums=('86bc350bd72c96aa83a456f9874c529d2db1b2bf65f00a19356eb3fb73c1ac23') + +build() { + cd $pkgname-$pkgver + make +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" SBINDIR=/usr/bin MANDIR=/usr/share/man/man1 install +} |