(2007-04-11) Kable-distro
This commit is contained in:
22
recetas/mplayerplug-in/mplayerplug-in-3.31.build.sh
Normal file
22
recetas/mplayerplug-in/mplayerplug-in-3.31.build.sh
Normal file
@@ -0,0 +1,22 @@
|
||||
#!/bin/sh
|
||||
|
||||
## UNPACK
|
||||
tar xvf mplayerplug-in-3.31.tar.gz
|
||||
cd mplayerplug-in
|
||||
|
||||
## CONFIG
|
||||
./configure --prefix=/usr || exit -1
|
||||
|
||||
## BUILD
|
||||
make || exit -1
|
||||
|
||||
## PKG
|
||||
mkdir dest
|
||||
make DESTDIR=$(pwd)/dest install
|
||||
cd dest
|
||||
tar cjvfp ../../mplayerplug-in-3.31.tar.bz2 *
|
||||
cd ..
|
||||
|
||||
## CLEANUP
|
||||
cd ..
|
||||
rm -rf mplayerplug-in
|
||||
BIN
recetas/mplayerplug-in/mplayerplug-in-3.31.tar.bz2
Normal file
BIN
recetas/mplayerplug-in/mplayerplug-in-3.31.tar.bz2
Normal file
Binary file not shown.
BIN
recetas/mplayerplug-in/mplayerplug-in-3.31.tar.gz
Normal file
BIN
recetas/mplayerplug-in/mplayerplug-in-3.31.tar.gz
Normal file
Binary file not shown.
44
recetas/seamonkey/seamonkey-1.1.1-build.sh
Normal file
44
recetas/seamonkey/seamonkey-1.1.1-build.sh
Normal file
@@ -0,0 +1,44 @@
|
||||
#!/bin/sh
|
||||
|
||||
## Untar
|
||||
tar xvf seamonkey-1.1.1.source.tar.bz2
|
||||
mkdir mozilla
|
||||
|
||||
## Config
|
||||
cat > .mozconfig << "EOF"
|
||||
mk_add_options MOZ_CO_PROJECT=suite
|
||||
mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/suite-opt
|
||||
ac_add_options --enable-application=suite
|
||||
ac_add_options --enable-debug
|
||||
ac_add_options --disable-tests
|
||||
ac_add_options --prefix=/usr
|
||||
ac_add_options --with-system-zlib
|
||||
ac_add_options --with-system-png
|
||||
ac_add_options --with-system-jpeg
|
||||
ac_add_options --disable-installer
|
||||
ac_add_options --enable-svg
|
||||
ac_add_options --disable-mailnews
|
||||
ac_add_options --disable-ldap
|
||||
|
||||
ac_add_options --enable-default-toolkit=gtk2
|
||||
ac_add_options --enable-xft
|
||||
|
||||
EOF
|
||||
|
||||
## BUILD
|
||||
make -f client.mk build || exit -1
|
||||
|
||||
## INSTALL
|
||||
mkdir dest
|
||||
make DESTDIR=$(pwd)/dest -f client.mk install || exit -1
|
||||
install -v -m755 -d dest/usr/include/seamonkey-1.1.1/nss
|
||||
|
||||
## PKG
|
||||
cd dest
|
||||
tar cjvfp ../../
|
||||
cd cd ..
|
||||
|
||||
## CLEANUP
|
||||
cd ..
|
||||
rm -rf mozilla
|
||||
|
||||
BIN
recetas/seamonkey/seamonkey-1.1.1.source.tar.bz2
Normal file
BIN
recetas/seamonkey/seamonkey-1.1.1.source.tar.bz2
Normal file
Binary file not shown.
BIN
recetas/seamonkey/seamonkey-1.1.1.tar.bz2
Normal file
BIN
recetas/seamonkey/seamonkey-1.1.1.tar.bz2
Normal file
Binary file not shown.
Reference in New Issue
Block a user