blob: 2b66d1551241241d32c688c9fb95e45b88805e0f (
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: Stefan Husmann <stefan-husmann@t-online.de>
pkgname=libxaw3dxft
_pkgname=libXaw3dXft
pkgver=1.6.2h
pkgrel=1
epoch=1
pkgdesc="xaw3d library for xpaint"
url="http://sourceforge.net/projects/sf-xpaint/files/libxaw3dxft/"
arch=('i686' 'x86_64')
license=('GPL')
depends=('libxft' 'libxmu' 'libxpm')
makedepends=('xorg-util-macros')
source=("http://sourceforge.net/projects/sf-xpaint/files/$pkgname/${_pkgname}-$pkgver.tar.bz2")
sha256sums=('5d749e3d682d2fb60959ebc3bce3228ca5c949a46aafc349e89a77f6c6ed830b')
build() {
cd ${_pkgname}-$pkgver
./autogen.sh
./configure --prefix=/usr --enable-internationalization \
--enable-multiplane-bitmaps \
--enable-gray-stipples \
--enable-arrow-scrollbars
make
}
package() {
cd ${_pkgname}-$pkgver
make DESTDIR=$pkgdir install
}
|