firefox build
parent
4da9f3f760
commit
8a23f45d14
|
|
@ -1,21 +1,27 @@
|
|||
#!/bin/bash
|
||||
|
||||
# first install stock version
|
||||
apt-get install --no-install-recommends --yes fluxbox
|
||||
. ../cleanup
|
||||
savechanges /fluxbox-stock.sb
|
||||
|
||||
# then, we want to patch it to implement window resizing!
|
||||
# so we will recompile whole package
|
||||
CWD=$(dirname $(readlink -f $0))
|
||||
|
||||
NAME=fluxbox
|
||||
VERSION=1.3.5
|
||||
|
||||
REBUILD=/tmp/$NAME-rebuild-$$
|
||||
CWD=$(dirname $(readlink -f $0))
|
||||
# first install stock version
|
||||
|
||||
apt-get update
|
||||
apt-get build-dep $NAME
|
||||
apt-get install --no-install-recommends --yes $NAME
|
||||
. ../cleanup
|
||||
savechanges /$NAME-stock.sb
|
||||
|
||||
cd /
|
||||
unsquashfs /$NAME-stock.sb
|
||||
|
||||
# then, we want to patch it to implement window resizing!
|
||||
# so we will recompile whole package
|
||||
|
||||
REBUILD=/tmp/$NAME-rebuild-$$
|
||||
|
||||
apt-get update
|
||||
apt-get --yes build-dep $NAME
|
||||
|
||||
mkdir -p $REBUILD
|
||||
cd $REBUILD
|
||||
|
|
@ -33,7 +39,6 @@ rm -Rf debian/$NAME/DEBIAN
|
|||
rm -Rf debian/$NAME/usr/share/doc
|
||||
rm -Rf debian/$NAME/usr/share/images
|
||||
|
||||
. ../cleanup
|
||||
savechanges /fluxbox-mods.sb debian/$NAME
|
||||
cp debian/$NAME/usr/bin/fluxbox /squashfs-root/usr/bin
|
||||
|
||||
# combine them together, todo
|
||||
savechanges /fluxbox.sb /squashfs-root
|
||||
|
|
|
|||
|
|
@ -0,0 +1,19 @@
|
|||
#
|
||||
|
||||
# deb cdrom:[Debian GNU/Linux 9.2.0 _Stretch_ - Official i386 NETINST 20171007-13:31]/ stretch main
|
||||
|
||||
|
||||
# Line commented out by installer because it failed to verify:
|
||||
#deb http://security.debian.org/debian-security stretch/updates main
|
||||
# Line commented out by installer because it failed to verify:
|
||||
#deb-src http://security.debian.org/debian-security stretch/updates main
|
||||
|
||||
# stretch-updates, previously known as 'volatile'
|
||||
# A network mirror was not selected during install. The following entries
|
||||
# are provided as examples, but you should amend them as appropriate
|
||||
# for your mirror of choice.
|
||||
#
|
||||
deb http://deb.debian.org/debian/ stretch main
|
||||
deb-src http://deb.debian.org/debian/ stretch main
|
||||
|
||||
deb http://deb.debian.org/debian/ stretch-updates main
|
||||
Loading…
Reference in New Issue