summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8d515a18e1f95ba4d0e98bedcccfdde135e53823 (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
30
# Maintainer: Brian Bidulock <bidulock@openss7.org>

pkgname=icewm-extra-themes
_oldname=icewm-themes
pkgver=1.0
pkgrel=1
pkgdesc="Extra themes for IceWM (too large to include in IceWM distribution)"
arch=(any)
url="http://github.com/bbidulock/icewm-extra-themes"
license=('GPL')
provides=($_oldname)
conflicts=($_oldname)
replaces=($_oldname)
depends=('icewm2')
makedepends=(markdown)
source=("https://github.com/bbidulock/icewm-extra-themes/releases/download/$pkgver/$pkgname-$pkgver.tar.xz")
md5sums=('e0f0d745f2f9b528c27423f7e3805984')

build() {
  cd $pkgname-$pkgver
  ./configure --prefix=/usr --sysconfdir=/etc
  make V=0
}

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

# vim:set ts=2 sw=2 et: