You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
516 B
21 lines
516 B
8 years ago
|
import 'compile/python'
|
||
|
|
||
|
name=zim
|
||
|
version=0.65
|
||
|
update_url='http://zim-wiki.org/downloads/'
|
||
|
|
||
|
dlextract "http://zim-wiki.org/downloads/$name-$version.tar.gz" \
|
||
|
'63ab7a2070e6d1d3fb32700a851d7b8b'
|
||
|
header_end
|
||
|
|
||
|
cd "$name-$version"
|
||
|
|
||
|
# Shitty method to fix setup.py for paths
|
||
|
safe_datadir="$(safe_sed "$dir_datadir")"
|
||
|
sed -i -e "s/share/$safe_datadir/g" setup.py
|
||
|
sed -i -e "s/$safe_datadir\/man/$(safe_sed "$dir_mandir")/g" setup.py
|
||
|
|
||
|
compile_python 2 --skip-xdg-cmd
|
||
|
|
||
|
# vim:set tabstop=4 shiftwidth=4 syntax=sh et:
|