forked from ports/contrib
23 lines
596 B
Plaintext
23 lines
596 B
Plaintext
# Description: powerful, flexible, and utterly configurable file manager for UNIX systems
|
|
# URL: http://nao.linux.pl/
|
|
# Maintainer: Bartlomiej Palmowski, maks1k at wp dot pl
|
|
# Depends on: boost fox python libxml2
|
|
|
|
name=nao
|
|
version=0.4.1
|
|
release=1
|
|
source=(http://$name.linux.pl/data/$name-$version.tar.bz2 crux_colon.patch)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
# patch -p0 -i ../gcc4.3.patch
|
|
patch -p1 -i ../crux_colon.patch
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--disable-nls \
|
|
--enable-python
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|