diff options
-rw-r--r-- | linhes/libestr/.gitignore | 3 | ||||
-rw-r--r-- | linhes/libestr/PKGBUILD | 24 |
2 files changed, 27 insertions, 0 deletions
diff --git a/linhes/libestr/.gitignore b/linhes/libestr/.gitignore new file mode 100644 index 0000000..107f9fe --- /dev/null +++ b/linhes/libestr/.gitignore @@ -0,0 +1,3 @@ +*.tar.xz +*.tar.gz +*.sig diff --git a/linhes/libestr/PKGBUILD b/linhes/libestr/PKGBUILD new file mode 100644 index 0000000..a8850b3 --- /dev/null +++ b/linhes/libestr/PKGBUILD @@ -0,0 +1,24 @@ +# $Id: PKGBUILD 266875 2017-11-15 14:29:11Z foutrelis $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Maintainer: Brian Knox <taotetek@gmail.com> + +pkgname=libestr +pkgver=0.1.11 +pkgrel=1 +pkgdesc="essentials for string handling (and a bit more)" +url="http://libestr.adiscon.com/" +arch=('x86_64' 'i686') +license=('LGPL2.1') +depends=() +source=("http://libestr.adiscon.com/files/download/libestr-$pkgver.tar.gz") +md5sums=('1f25a2332750d4bfacfb314235fedff0') + +build() { + cd "$srcdir"/${pkgname}-${pkgver} + ./configure --prefix=/usr + make +} +package() { + cd "$srcdir"/${pkgname}-${pkgver} + make install DESTDIR="$pkgdir" +} |