summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3474b055c677afb306bbed3f6a6684aa4f9fda54 (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.2
pkgrel=5
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=(icewm)
makedepends=(markdown)
source=("https://github.com/bbidulock/icewm-extra-themes/releases/download/$pkgver/$pkgname-$pkgver.tar.lz")
md5sums=('8bb4a8bc7fbde0ac083c4f277d205642')

build() {
  cd $pkgname-$pkgver
  ./configure
  make
}

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

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