summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 5a78ebbed1536078041dd3041955246e3437da22 (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
28
29
# Maintainer: Ainola
# Contributor: Justin Dray
# Contributor: Andy Kluger
# Contributor: Alexander 'hatred' Drozdov
# Contributor: G_Syme
# Contributor: SpepS
# Contributor: Bastien Dejean

pkgname=libicns
pkgver=0.8.1
pkgrel=5
pkgdesc='Library for manipulating icns/IconFamily files'
arch=('x86_64')
url='https://icns.sourceforge.io/'
license=('LGPL' 'GPL2')
depends=('libpng' 'jasper')
source=("https://downloads.sf.net/icns/$pkgname-$pkgver.tar.gz")
sha256sums=('335f10782fc79855cf02beac4926c4bf9f800a742445afbbf7729dab384555c2')

build() {
    cd "$pkgname-$pkgver"
    ./configure --prefix=/usr
    make
}

package() {
    cd "$pkgname-$pkgver"
    make DESTDIR="$pkgdir" install
}