blob: 9488ff9baaa2a03718f67f5bbcb9808961da0023 (
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
|
# Description: Fluxbox-util application that creates and manage icons on your Fluxbox desktop.
# URL: http://fluxbox.sourceforge.net/fbdesk/
# Maintainer: Erich Eckner, erich at eckner dot net
# Depends on: libpng
# Nice to have: fluxbox xlib imlib2
name=fbdesk
version=1.4.1
release=1
source=(http://fluxbox.sourceforge.net/download/$name-$version.tar.gz
fbdesk-1.4.1-gcc43.patch
fbdesk-1.4.1-options.patch)
build() {
cd $name-$version
patch -p1 -i $SRC/fbdesk-1.4.1-gcc43.patch
patch -p1 -i $SRC/fbdesk-1.4.1-options.patch
./configure \
--prefix=/usr \
--disable-png
make
make DESTDIR=$PKG install
}
|