mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-09 00:17:31 +00:00
added alarm/meson-tools
This commit is contained in:
parent
7de1e81e0b
commit
30b14380a4
1 changed files with 32 additions and 0 deletions
32
alarm/meson-tools/PKGBUILD
Normal file
32
alarm/meson-tools/PKGBUILD
Normal file
|
@ -0,0 +1,32 @@
|
|||
# Maintainer: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
|
||||
buildarch=8
|
||||
|
||||
pkgname=meson-tools
|
||||
pkgver=r21.5e01cba
|
||||
pkgrel=1
|
||||
arch=('aarch64')
|
||||
pkgdesc="Amlogic Meson tools"
|
||||
url="https://github.com/afaerber/meson-tools"
|
||||
license=('GPL2')
|
||||
depends=('openssl')
|
||||
makedepends=('git')
|
||||
source=('git+https://github.com/afaerber/meson-tools.git')
|
||||
md5sums=('SKIP')
|
||||
|
||||
pkgver() {
|
||||
cd ${pkgname}
|
||||
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
|
||||
}
|
||||
|
||||
build() {
|
||||
cd ${pkgname}
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd ${pkgname}
|
||||
install -d "${pkgdir}/usr/bin"
|
||||
install -m755 amlbootsig unamlbootsig amlinfo "${pkgdir}/usr/bin"
|
||||
install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
|
||||
}
|
Loading…
Reference in a new issue