summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: a5732e1ba0c278aa561e30cb7d81a93d67c43e1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: Dima Volkov <dimaac@bk.ru>
pkgname=strings
pkgver=1.0
pkgrel=1
pkgdesc="Strings is another bad static string library, written in C."
arch=('any')
url="https://github.com/dimalmfao/strings"
license=('GPL-3.0')
depends=('gcc')
source=("$pkgname-$pkgver.tar.gz::https://github.com/dimalmfao/strings/archive/master.tar.gz")
sha256sums=('55b6df89380a44f546989454fcf8e3451d1fdea1698d1e0537677366d1d384cb')

build() {
  cd "$srcdir/strings-master"
  make compile lib
}

package() {
  cd "$srcdir/strings-master"
  make install DESTDIR="$pkgdir"
}