summaryrefslogtreecommitdiffstats
path: root/seamonkey-bin
diff options
context:
space:
mode:
authorkj_sh6042026-05-05 21:35:45 -0400
committerkj_sh6042026-05-05 21:35:45 -0400
commitd6dec14d551824ec93347abf5c9d67c4777718ff (patch)
tree7e34ba2cb66ceb7d207a7f11cf7633234e9939f6 /seamonkey-bin
parent07adb0c96f0904aad9d488287c8c21e18f5d3343 (diff)
refactor: remove redundant PKGBUILDsHEADmaster
Diffstat (limited to 'seamonkey-bin')
-rw-r--r--seamonkey-bin/.SRCINFO50
-rw-r--r--seamonkey-bin/.gitignore3
-rw-r--r--seamonkey-bin/PKGBUILD84
3 files changed, 0 insertions, 137 deletions
diff --git a/seamonkey-bin/.SRCINFO b/seamonkey-bin/.SRCINFO
deleted file mode 100644
index 7c9fd40..0000000
--- a/seamonkey-bin/.SRCINFO
+++ /dev/null
@@ -1,50 +0,0 @@
-pkgbase = seamonkey-bin
- pkgdesc = SeaMonkey internet suite (binary version)
- pkgver = 2.53.21
- pkgrel = 1
- url = http://www.seamonkey-project.org/
- arch = x86_64
- license = MPL-2.0
- depends = at-spi2-core
- depends = bash
- depends = cairo
- depends = dbus
- depends = dbus-glib
- depends = fontconfig
- depends = freetype2
- depends = gcc-libs
- depends = gdk-pixbuf2
- depends = glib2
- depends = glibc
- depends = gtk3
- depends = hunspell
- depends = libevent
- depends = libffi
- depends = libpulse
- depends = libvpx
- depends = libx11
- depends = libxcb
- depends = libxcomposite
- depends = libxdamage
- depends = libxext
- depends = libxfixes
- depends = libxrender
- depends = libxt
- depends = mime-types
- depends = nspr
- depends = nss
- depends = pango
- depends = pixman
- depends = sqlite
- depends = startup-notification
- depends = zlib
- optdepends = libnotify: Notification integration
- optdepends = networkmanager: Location detection via available WiFi networks
- optdepends = pulseaudio: Audio support
- optdepends = ffmpeg: H.264 video support
- provides = seamonkey
- conflicts = seamonkey
- source = https://archive.seamonkey-project.org/releases/2.53.21/linux-x86_64/en-US/seamonkey-2.53.21.en-US.linux-x86_64.tar.bz2
- sha256sums = 19e819428dbec28e63ca197444d80e8456f106a462254521009f7ae85dae5c16
-
-pkgname = seamonkey-bin
diff --git a/seamonkey-bin/.gitignore b/seamonkey-bin/.gitignore
deleted file mode 100644
index 8d78c83..0000000
--- a/seamonkey-bin/.gitignore
+++ /dev/null
@@ -1,3 +0,0 @@
-pkg/
-src/
-*.tar*
diff --git a/seamonkey-bin/PKGBUILD b/seamonkey-bin/PKGBUILD
deleted file mode 100644
index 02c0991..0000000
--- a/seamonkey-bin/PKGBUILD
+++ /dev/null
@@ -1,84 +0,0 @@
-# Maintainer: kj_sh604 <406hs_jk@proton.me>
-
-pkgname=seamonkey-bin
-pkgver=2.53.21
-pkgrel=1
-pkgdesc="SeaMonkey internet suite (binary version)"
-arch=('x86_64')
-url="http://www.seamonkey-project.org/"
-license=(MPL-2.0)
-depends=(
- at-spi2-core
- bash
- cairo
- dbus
- dbus-glib
- fontconfig
- freetype2
- gcc-libs
- gdk-pixbuf2
- glib2
- glibc
- gtk3
- hunspell
- libevent
- libffi
- libpulse
- libvpx
- libx11
- libxcb
- libxcomposite
- libxdamage
- libxext
- libxfixes
- libxrender
- libxt
- mime-types
- nspr
- nss
- pango
- pixman
- sqlite
- startup-notification
- zlib
-)
-optdepends=(
- 'libnotify: Notification integration'
- 'networkmanager: Location detection via available WiFi networks'
- 'pulseaudio: Audio support'
- 'ffmpeg: H.264 video support'
-)
-source=("https://archive.seamonkey-project.org/releases/$pkgver/linux-x86_64/en-US/seamonkey-$pkgver.en-US.linux-x86_64.tar.bz2")
-conflicts=('seamonkey')
-provides=('seamonkey')
-sha256sums=('19e819428dbec28e63ca197444d80e8456f106a462254521009f7ae85dae5c16')
-
-package() {
- cd "$srcdir/seamonkey"
- install -d "$pkgdir/opt/seamonkey"
- cp -r * "$pkgdir/opt/seamonkey/"
- install -d "$pkgdir/usr/bin"
- ln -s /opt/seamonkey/seamonkey "$pkgdir/usr/bin/seamonkey"
- install -d "$pkgdir/usr/share/applications"
- cat <<EOF > "$pkgdir/usr/share/applications/seamonkey.desktop"
-[Desktop Entry]
-Name=SeaMonkey
-GenericName=Internet Suite
-Comment=Web browser, advanced email, newsgroup and feed client, IRC chat, and web development tools
-Exec=/opt/seamonkey/seamonkey %u
-Icon=seamonkey
-Terminal=false
-Type=Application
-Categories=Network;WebBrowser;Email;News;Chat;
-MimeType=text/html;text/xml;application/xhtml+xml;application/vnd.mozilla.xul+xml;application/rss+xml;application/rdf+xml;
-EOF
-
- for size in 16 22 24 32 48 64 128 256; do
- install -d "$pkgdir/usr/share/icons/hicolor/${size}x${size}/apps"
- install -m644 "chrome/icons/default/default${size}.png" "$pkgdir/usr/share/icons/hicolor/${size}x${size}/apps/seamonkey.png"
- done
- install -d "$pkgdir/usr/share/licenses/$pkgname"
- install -m644 license.txt "$pkgdir/usr/share/licenses/$pkgname/"
-}
-
-# vim:set ts=2 sw=2 et: