summaryrefslogtreecommitdiff
path: root/libs/hwdata/MAKEPKG
blob: e81dd8a63088e6eb3d9c01e6a000297b33f69322 (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: Hardware identification databases
# url: https://github.com/vcrhonek/hwdata

name=hwdata
version=0.411
release=1
source=(https://github.com/vcrhonek/hwdata/archive/v$version/$name-$version.tar.gz)

sha256sums=(
    "d75462181fbd307228e0a48b8d1449f1773ea4b1f17e8a1d56346907f999ce33"
)

build() {
    cd $name-$version
    
    ./configure --prefix=/usr
    make DESTDIR=$PKG install
    
    rm -rf $PKG/usr/lib
}

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

# vim: filetype=sh