desktop/icoutils/PKGBUILD

33 lines
673 B
Bash

#
# Apps Packages for Chakra, part of chakra-project.org
#
# maintainer abveritas@chakra-project.org
pkgname=icoutils
pkgver=0.30.0
pkgrel=1
pkgdesc='Extracts and converts images in MS Windows(R) icon and cursor files.'
arch=('x86_64')
license=('GPL')
url='http://www.nongnu.org/icoutils/'
depends=('libpng' 'perl-libwww>=5.64')
categories=('graphics')
source=("http://savannah.nongnu.org/download/${pkgname}/${pkgname}-${pkgver}.tar.bz2")
md5sums=('2574eb4ff5c0d3b2a59ad5a7d8848ced')
build() {
cd ${pkgname}-${pkgver}
./configure \
--prefix=/usr \
--mandir=/usr/share/man
make
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
}