surumler-iptal
This commit is contained in:
parent
7634b57fa2
commit
796dcd6275
|
@ -37,7 +37,7 @@ derle() {
|
|||
install -Dm644 /dev/stdin "$_distini" <<END
|
||||
[Global]
|
||||
id=Milis
|
||||
surum=1.0 Atilla
|
||||
version=1.0 Atilla
|
||||
about=Milis Lİnux 1.0 için Mozilla Firefox
|
||||
|
||||
[Preferences]
|
||||
|
|
|
@ -1,9 +0,0 @@
|
|||
_l="/etc/login.defs"
|
||||
_p="/etc/passwd"
|
||||
l=$(grep "^UID_MIN" $_l)
|
||||
l1=$(grep "^UID_MAX" $_l)
|
||||
users=(`awk -F':' -v "min=${l##UID_MIN}" -v "max=${l1##UID_MAX}" '{ if ( $3 >= min && $3 <= max && $7 != "/sbin/nologin" ) print $1 }' "$_p"`)
|
||||
for user in "${users[@]}"; do
|
||||
cp -r /tmp/.mozilla "/home/$user/"
|
||||
sudo chmod -R 777 /home/$user/.mozilla
|
||||
done
|
|
@ -1,175 +0,0 @@
|
|||
# Tanım: Mozilla.org'dan Bağımsız Web Tarayıcısı
|
||||
# URL: http://www.mozilla.com/firefox/
|
||||
# Paketçi: milisarge
|
||||
# Gerekler: libvpx libevent clang rust cargo autoconf2 pulseaudio gconf yasm sqlite libvpx libevent alsa-lib gtk2 gtk3 xorg-app zip unzip gstreamer gstreamer-plugins-base gstreamer-plugins-good gstreamer1-plugins-libav
|
||||
# Grup: ağ
|
||||
|
||||
isim=firefoxq
|
||||
surum=57.0
|
||||
devir=1
|
||||
|
||||
kaynak=(https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$surum/source/firefox-$surum.source.tar.xz
|
||||
http://download.cdn.mozilla.net/pub/firefox/releases/$surum/linux-x86_64/xpi/tr.xpi::tr-$surum.xpi
|
||||
https://github.com/oltulu/milis/raw/master/firefox/mozilla.tar.xz::mozilla-milis.tar.xz)
|
||||
|
||||
derle() {
|
||||
|
||||
cd firefox-$surum
|
||||
# Locale autodetect
|
||||
sed -i '/intl.locale.matchOS/s/false/true/' modules/libpref/init/all.js
|
||||
|
||||
cat > mozconfig << "EOF"
|
||||
# Çok çekirdekli bir işlemciniz varsa, tüm çekirdekler varsayılan olarak kullanılacaktır.
|
||||
# İsterseniz, kullanılan çekirdek sayısını azaltabilirsiniz. Bunun için bir sonraki satır
|
||||
#başındaki # işaretini kaldırın ve geçerli CPU çekirdeği sayısını 1'e ayarlayın.
|
||||
|
||||
#mk_add_options MOZ_MAKE_FLAGS="-j1"
|
||||
|
||||
# If you have installed dbus-glib, comment out this line:
|
||||
ac_add_options --disable-dbus
|
||||
|
||||
# Dbus-glib'yi kurduysanız ve kablosuz araçları yüklediyseniz
|
||||
# ve coğrafi konum web servislerini kullanmak istiyorsanız,
|
||||
#bir alt satırıdaki # işaretini kaldırın.
|
||||
|
||||
ac_add_options --disable-necko-wifi
|
||||
|
||||
# Gtk +-2 ile oluşturmak istiyorsanız bir alt satırıdaki # işaretini kaldırın.
|
||||
#ac_add_options --enable-default-toolkit=cairo-gtk2
|
||||
|
||||
# İsteğe bağlı bağımlılıkları yüklediyseniz bu satırların işaretini kaldırın::
|
||||
#ac_add_options --enable-system-hunspell
|
||||
#ac_add_options --enable-startup-notification
|
||||
|
||||
# PulseAudio kurulu ise aşağıdaki seçeneği açın
|
||||
#ac_add_options --disable-pulseaudio
|
||||
|
||||
# GConf yüklediyseniz, bu satırı açın
|
||||
ac_add_options --disable-gconf
|
||||
|
||||
# Önerilen bağımlılıkları yüklemediyseniz # işaretini kaldırın:
|
||||
ac_add_options --enable-system-sqlite
|
||||
ac_add_options --with-system-libevent
|
||||
ac_add_options --with-system-libvpx
|
||||
#ac_add_options --with-system-nspr
|
||||
#ac_add_options --with-system-nss
|
||||
#ac_add_options --with-system-icu
|
||||
|
||||
# If you are going to apply the patch for system graphite
|
||||
# and system harfbuzz, uncomment these lines:
|
||||
#ac_add_options --with-system-graphite2
|
||||
#ac_add_options --with-system-harfbuzz
|
||||
|
||||
# Stripping is now enabled by default.
|
||||
# Uncomment these lines if you need to run a debugger:
|
||||
#ac_add_options --disable-strip
|
||||
#ac_add_options --disable-install-strip
|
||||
|
||||
# Bu satırın altındaki herhangi bir şeyi değiştirmemenizi öneriyoruz:
|
||||
ac_add_options --prefix=/usr
|
||||
ac_add_options --enable-application=browser
|
||||
|
||||
ac_add_options --disable-crashreporter
|
||||
ac_add_options --disable-updater
|
||||
ac_add_options --disable-tests
|
||||
|
||||
|
||||
# ac_add_options --enable-gio
|
||||
ac_add_options --enable-official-branding
|
||||
|
||||
# From firefox-40, using system cairo causes firefox to crash
|
||||
# frequently when it is doing background rendering in a tab.
|
||||
#ac_add_options --enable-system-cairo
|
||||
ac_add_options --enable-system-ffi
|
||||
ac_add_options --enable-system-pixman
|
||||
|
||||
ac_add_options --with-pthreads
|
||||
|
||||
ac_add_options --with-system-bz2
|
||||
ac_add_options --with-system-jpeg
|
||||
#ac_add_options --with-system-png
|
||||
ac_add_options --with-system-zlib
|
||||
|
||||
mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/firefox-build-dir
|
||||
EOF
|
||||
|
||||
test $(uname -m) = "i686" && sed -i 's/enable-optimize/disable-optimize/' mozconfig || true
|
||||
|
||||
sed -e 's/256/224/' \
|
||||
-i netwerk/protocol/http/Http2Session.cpp
|
||||
|
||||
SHELL=/bin/sh make -f client.mk || SHELL=/bin/sh make -f client.mk
|
||||
|
||||
mkdir -pv $PKG/usr/{bin,lib{,/mozilla/plugins}}
|
||||
|
||||
SHELL=/bin/sh make -f client.mk DESTDIR=$PKG install INSTALL_SDK=
|
||||
|
||||
chown -R 0:0 $PKG/usr/lib/firefox-$surum
|
||||
ln -sf ../lib/firefox-$surum/firefox $PKG/usr/bin
|
||||
ln -sf ../mozilla/plugins $PKG/usr/lib/firefox-$surum
|
||||
|
||||
# Gnash için gerekli
|
||||
mkdir -p $PKG/usr/include/npapi
|
||||
cp -v dom/plugins/base/*.h $PKG/usr/include/npapi
|
||||
|
||||
# Başlatıcı
|
||||
mkdir -pv $PKG/usr/share/applications &&
|
||||
cat > $PKG/usr/share/applications/firefox.desktop << "EOF" &&
|
||||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Type=Application
|
||||
Name=Firefox
|
||||
Comment=İnternette gezinin
|
||||
Icon=firefox
|
||||
Exec=firefox
|
||||
Categories=Network;GTK;Application;Browser;WebBrowser;
|
||||
StartupNotify=true
|
||||
Terminal=false
|
||||
EOF
|
||||
mkdir -pv $PKG/usr/share/pixmaps
|
||||
ln -sf /usr/lib/firefox-$surum/browser/icons/mozicon128.png $PKG/usr/share/pixmaps/firefox.png
|
||||
|
||||
for i in 16 22 24 32 48 256
|
||||
do
|
||||
mkdir -p $PKG/usr/share/icons/hicolor/${i}x${i}/apps
|
||||
cp browser/branding/official/default${i}.png \
|
||||
$PKG/usr/share/icons/hicolor/${i}x${i}/apps/firefox.png
|
||||
done
|
||||
|
||||
for lang in tr
|
||||
do
|
||||
install -Dm644 $SRC/$lang-$surum.xpi \
|
||||
$PKG/usr/lib/firefox-$surum/browser/extensions/langpack-$lang@firefox.mozilla.org.xpi
|
||||
done
|
||||
|
||||
cat > $PKG/usr/lib/firefox-$surum/defaults/pref/vendor.js << "EOF"
|
||||
// Use LANG environment variable to choose locale
|
||||
pref("intl.locale.matchOS", true);
|
||||
|
||||
// Disable default browser checking.
|
||||
pref("browser.shell.checkDefaultBrowser", false);
|
||||
|
||||
// Don't disable our bundled extensions in the application directory
|
||||
pref("extensions.autoDisableScopes", 11);
|
||||
pref("extensions.shownSelectionUI", true);
|
||||
EOF
|
||||
|
||||
# Firefox hakkında kısmı
|
||||
_distini="$PKG/usr/lib/firefox-$surum/distribution/distribution.ini"
|
||||
install -Dm644 /dev/stdin "$_distini" <<END
|
||||
|
||||
[Global]
|
||||
id=Milis Linux
|
||||
surum=1.0 Atilla
|
||||
about=Milis Linux için Mozilla Firefox
|
||||
|
||||
[Preferences]
|
||||
app.distributor=milis
|
||||
app.distributor.channel=firefox
|
||||
app.partner.archlinux=milis
|
||||
END
|
||||
|
||||
mkdir -p $PKG/tmp
|
||||
mv $SRC/.mozilla $PKG/tmp/
|
||||
}
|
||||
|
|
@ -5,8 +5,6 @@
|
|||
# Grup: sistem masaüstü
|
||||
|
||||
isim=tumbler
|
||||
source /root/talimatname/genel/x/xfce4/surumler
|
||||
surum="${tumbler_surum}";[ -z ${tumbler_surum} ] && \
|
||||
surum=0.1.31
|
||||
devir=2
|
||||
|
||||
|
|
Loading…
Reference in New Issue