blob: 38d98b40586cb188d7904539f1e6661840225be3 (
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
|
# Maintainer: Mikael Eriksson <mikael_eriksson@miffe.org>
pkgname=libbinio
pkgver=1.5
pkgrel=1
pkgdesc="Binary I/O C++ class library"
url="https://github.com/adplug/libbinio"
arch=('i686' 'x86_64')
license=('GPL')
depends=('gcc-libs')
source=(https://github.com/adplug/libbinio/releases/download/libbinio-$pkgver/libbinio-$pkgver.tar.bz2)
md5sums=('261046e16f74d1cdbf9aa6c78fa264e4')
build() {
cd "$srcdir/libbinio-$pkgver"
./configure --prefix=/usr --infodir=/usr/share/info
make
}
package() {
cd "$srcdir/libbinio-$pkgver"
make "DESTDIR=$pkgdir" install
}
# vim:set ts=8 sts=2 sw=2 et:
|