summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f966b8d07fbc074ae57cc7ab79b23c8843e6c55b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Maintainer: noirscape <neko at catgirlsin dot space>
pkgname=fatattr-git
_pkgname=fatattr
pkgver=1
pkgrel=1
pkgdesc="Small linux application to see or modify MSDOS attributes in a FAT file system"
arch=('x86_64' 'i686')
url="https://github.com/Terseus/fatattr"
license=('GPL')
depends=()
makedepends=('git' 'scons' 'clang')
provides=('fatattr')
conflicts=('fatattr')
options=()
source=(git+https://github.com/Terseus/fatattr.git)
md5sums=('SKIP')
build() {
	cd "$srcdir"/"$_pkgname"
        scons
}
package() {
	cd "$srcdir"/"$_pkgname"
	mkdir -p "$pkgdir"/usr/bin
	install -Dm755 "bin/$_pkgname" "$pkgdir"/usr/bin
}