MiddleArch/config/pkgbuilds/p7.j2

32 lines
606 B
Plaintext
Raw Normal View History

2021-08-31 00:11:27 +02:00
pkgname={{ name }}
2021-06-08 23:08:11 +02:00
pkgver={{ tag }}
2022-01-12 01:07:56 +01:00
pkgrel={{ rel }}
2021-06-08 23:08:11 +02:00
pkgdesc="Casio Communication Protocol 7.00 implementation"
arch=('i686' 'x86_64')
url="https://p7.planet-casio.com/"
license=('GPL2')
groups=()
depends=('libusb>=1.0' 'libp7>=3.0')
makedepends=('asciidoc>=8.6.9')
optdepends=()
provides=('p7')
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=(https://p7.planet-casio.com/pub/p7utils-${pkgver}.tar.gz)
sha256sums=('{{ hash }}')
noextract=()
build() {
cd "p7utils-$pkgver"
./configure && make all-p7
}
package() {
cd "p7utils-$pkgver"
make install-p7 DESTDIR="$pkgdir"
}