blob: a941e7baf367a70a17a1aea798bb3995733fe832 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: Mike Swanson <mikeonthecomputer@gmail.com>
# Contributor: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
pkgname=fatattr
pkgver=1.0.1
pkgrel=6
pkgdesc="Display or change attributes on a FAT filesystem"
arch=('i686' 'x86_64')
url="http://kernel.org/pub/linux/utils/fs/fat/fatattr/"
license=('GPL2')
source=(http://httpredir.debian.org/debian/pool/main/f/${pkgname}/${pkgname}_${pkgver}.orig.tar.xz)
sha256sums=('2dd7208dc259118dffa761ebd9ea509de635578b57cb871f836aa8dd66651d11')
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make INSTALLROOT="$pkgdir" install
}
|