You are not logged in.
# Contributor: Damir Perisa <damir.perisa@bluewin.ch>
pkgname=ttf-cheapskate
pkgver=0.1
pkgrel=1
pkgdesc="TTFonts collection from dustimo.com"
url="http://dustismo.com/"
depends=("xfree86")
conflicts=()
backup=()
install=ttf.install
source=(http://www.dustismo.com/fonts/Domestic_Manners.zip
http://www.dustismo.com/fonts/PenguinAttack.tgz
http://www.dustismo.com/fonts/Dustismo.tgz
http://www.dustismo.com/fonts/El_Abogado_Loco.zip
http://www.dustismo.com/fonts/Progenisis.zip
http://www.dustismo.com/fonts/flatline.zip
http://www.dustismo.com/fonts/MarkedFool.zip
http://www.dustismo.com/fonts/Junkyard.zip
http://www.dustismo.com/fonts/ItWasntMe.zip
http://www.dustismo.com/fonts/balker.zip
http://www.dustismo.com/fonts/Swift.zip
http://www.dustismo.com/fonts/Wargames.zip
http://www.dustismo.com/fonts/Winks.zip
)
build() {
cd $startdir/src/$pkgname-$pkgver
mkdir -p $startdir/pkg/usr/X11R6/lib/X11/fonts/TTF
cp *.ttf $startdir/pkg/usr/X11R6/lib/X11/fonts/TTF
}
a nice collection of free ttfonts ... the only problem: if you rebuild them, makepkg will ask you several times to overwrite the file "licence.txt" that is included in each of the font-archives --- any idea how to solve it?
enjoy
The impossible missions are the only ones which succeed.
Offline
yes
1) using the command yes
2) using the flag f to tar to force overright
GNU/Linux: Share & Enjoy!
Offline
yes
1) using the command yes
2) using the flag f to tar to force overright
The f flag cannot be passed to tar since the unpacking is done internally by makepkg. But the yes command will work.
$ yes | makepkg
Offline
netkrash wrote:yes
1) using the command yes
2) using the flag f to tar to force overrightThe f flag cannot be passed to tar since the unpacking is done internally by makepkg. But the yes command will work.
$ yes | makepkg
ok, thanx
The impossible missions are the only ones which succeed.
Offline