12345678910111213141516171819202122 |
- # Tanım: Gereksiz dosyaları silerek diskte yer açar.
- # URL: https://www.bleachbit.org/
- # Paketçi: halityilmaz1982
- # Gerekler: python-gtk desktop-file-utils gtk-update-icon-cache hicolor-icon-theme
- # Grup: sistem
- isim=bleachbit
- surum=2.0
- devir=1
- kaynak=(https://downloads.sourceforge.net/$isim/$isim-$surum.tar.bz2)
-
- derle() {
- cd $isim-$surum
- for file in $(find . -name '*.py' -print); do
- sed -i -e 's_^#!.*/usr/bin/python_#!/usr/bin/python2_' \
- -e 's_^#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' "$file"
- done
- sed -i 's/python/python2/g' Makefile
- make prefix=/usr DESTDIR="$PKG" PYTHON=python2 install
- }
|