summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8366e334c52c715dd746e409885ec98d6d7357be (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: Daniel Menelkir <dmenelkir at gmail dot com>

_pkgname="pnginfo"
pkgname="pnginfo-git"
pkgdesc="The pnginfo utility explores the content of PNG files."
pkgver=0.47b50b4
pkgrel=1
arch=('x86_64')
url="https://github.com/tleguern/pnginfo"
license=('ISC')
source=("git+$url")
sha512sums=('SKIP')

build() {
  cd "$_pkgname"
  ./configure PREFIX=/usr
  make
}

package() {
  cd "$_pkgname"
  install -D     -t "$pkgdir"/usr/bin pnginfo
}