blob: 53ec4d5976b44212057f418223cb384f719661e6 (
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
29
30
31
32
|
# Maintainer: KokaKiwi <kokakiwi+aur@kokakiwi.net>
_pkgname=nmrpflash
pkgname=${_pkgname}-git
pkgver=0.9.13.r20.g021e449
pkgrel=1
pkgdesc="Netgear Unbrick Utility"
arch=('x86_64')
url="https://github.com/jclehner/nmrpflash"
depends=('libpcap' 'libnl>=3')
makedepends=('make')
source=("${_pkgname}::git+https://github.com/jclehner/nmrpflash.git")
sha256sums=('SKIP')
pkgver() {
cd "${_pkgname}"
git describe --long | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd "${_pkgname}"
make
}
package() {
cd "${_pkgname}"
install -dm0755 "${pkgdir}"/usr/bin
make install PREFIX="${pkgdir}/usr"
}
|