PKGBUILDs: Merge tari-web with tari-core

Since anyone using Tari will probably want the web browsers too,
this change makes sense.

Since all of Tari is now in one PKGBUILD, it is easy to see everything
that will be installed, and it becomes trivial to add or remove packages
as needed.
This commit is contained in:
Donovan Glover 2018-12-08 12:26:38 -05:00
parent eff526497b
commit 9ff3bfa22f
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
4 changed files with 15 additions and 19 deletions

View File

@ -1,5 +1,5 @@
pkgname=tari-core
pkgver=0.6.0
pkgver=0.7.0
pkgrel=1
pkgdesc="My Arch Linux setup"
arch=('any')
@ -148,4 +148,17 @@ depends=(stow
gnome-disk-utility
gnome-screenshot
gnome-weather
gnome-break-timer)
gnome-break-timer
firefox
chromium)
source=(
'local-settings.js'
'mozilla.cfg'
)
sha256sums=('4588ae786cf0cdf941a0c79ad71b7592cd1f5478a85822b019d98ff0d5e631d4'
'c625a3b98b3769bf08fe0a357898245dd2688f3d5c22c7a42ad4fc26132f45a9')
package() {
install -Dm644 local-settings.js "$pkgdir"/usr/lib/firefox/defaults/pref/local-settings.js
install -Dm644 mozilla.cfg "$pkgdir"/usr/lib/firefox/mozilla.cfg
}

View File

@ -1,17 +0,0 @@
pkgname=tari-web
pkgver=0.3.0
pkgrel=1
pkgdesc="Web browser settings."
arch=('any')
depends=(firefox chromium)
source=(
'local-settings.js'
'mozilla.cfg'
)
sha256sums=('4588ae786cf0cdf941a0c79ad71b7592cd1f5478a85822b019d98ff0d5e631d4'
'c625a3b98b3769bf08fe0a357898245dd2688f3d5c22c7a42ad4fc26132f45a9')
package() {
install -Dm 644 local-settings.js "$pkgdir"/usr/lib/firefox/defaults/pref/local-settings.js
install -Dm 644 mozilla.cfg "$pkgdir"/usr/lib/firefox/mozilla.cfg
}