26 lines
577 B
Plaintext
26 lines
577 B
Plaintext
# Description: Opera'nın en iyi özelliklerini taşıyan Linux'a özel tarayıcı
|
||
# URL: http://fifth-browser.sourceforge.net/
|
||
# Packager: milisarge
|
||
# Depends on: webkitfltk urlmatch physfs desktop-file-utils
|
||
|
||
name=fifth
|
||
version=git
|
||
release=1
|
||
source=()
|
||
|
||
build() {
|
||
if [ ! -d $DERLEME_KAYNAKDIZIN/fifth ];then
|
||
git clone https://github.com/clbr/fifth.git $DERLEME_KAYNAKDIZIN/fifth
|
||
else
|
||
cd $DERLEME_KAYNAKDIZIN/fifth
|
||
git pull
|
||
cd -
|
||
fi
|
||
cp -r $DERLEME_KAYNAKDIZIN/fifth ${SRC}/fifth
|
||
cd "${SRC}/${name}"
|
||
./autogen.sh
|
||
./configure
|
||
make
|
||
make install DESTDIR="${PKG}"
|
||
}
|