mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
28 lines
821 B
Bash
28 lines
821 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
|
|
pkgname=pawm
|
|
pkgver=2.2.9
|
|
pkgrel=1
|
|
pkgdesc="Puto Amo Window Manager is a full featured window manager, but without useless bells and whistles"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.pleyades.net/pawm/"
|
|
license=("GPL")
|
|
depends=(libxft libxpm libxrandr)
|
|
source=(http://www.pleyades.net/pawm/files/pawm-$pkgver.tar.gz)
|
|
md5sums=('4a80377890edb319bff9338a7fd861f3')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
|
|
./0 --prefix=/usr
|
|
|
|
make || return 1
|
|
|
|
mkdir -p $startdir/pkg/usr/share/pawm/icons && \
|
|
mkdir -p $startdir/pkg/usr/bin && \
|
|
mkdir -p $startdir/pkg/etc && \
|
|
cp data/icons/* $startdir/pkg/usr/share/pawm/icons/ && \
|
|
cp conf/pawm.conf $startdir/pkg/etc/ && \
|
|
cp src/pawm $startdir/pkg/usr/bin/
|
|
}
|