summaryrefslogtreecommitdiff
path: root/opt/stik/MAKEPKG
blob: bef7ffc19891ca3b37de331cf2075489f5599b84 (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
26
27
28
#!/bin/mkpkg
# description: Minimal removable device mount/unmount utility
# url: https://rawnix.org

name=stik
version=1.1
release=1
permissions=(/usr/bin/stik:root:plugdev:4755)
source=(https://dl.rawnix.org/$name-$version.tar.gz)

makedeps=()

sha256sums=(
    "ca2b080adf25531eb929151af3bcf8b570706abf82891f297d6df84a28f2686e"
)

build() {
	cd $name-$version
	make CC=${CC:-cc}
	make DESTDIR=$PKG install
}

signify() {
    untrusted comment: public key
    RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}

# vim: filetype=sh