diff options
author | gardenapple | 2025-01-04 02:45:36 +0200 |
---|---|---|
committer | gardenapple | 2025-01-04 02:45:36 +0200 |
commit | b8413acd809cfedfe25b5faa09ca0f5bc7b20ce9 (patch) | |
tree | 53b203a814f5ab7b780e7068ef6494dc21b62f55 | |
download | aur-b8413acd809cfedfe25b5faa09ca0f5bc7b20ce9.tar.gz |
Initial commit
-rw-r--r-- | .SRCINFO | 22 | ||||
-rw-r--r-- | .gitignore | 6 | ||||
-rw-r--r-- | PKGBUILD | 34 |
3 files changed, 62 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..07fe9ea00d76 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,22 @@ +pkgbase = mozillavpn-bin + pkgdesc = Fast, secure, and easy to use VPN from the makers of Firefox (Ubuntu PPA binary) + pkgver = 2.24.3 + pkgrel = 1 + url = https://vpn.mozilla.org + arch = x86_64 + license = MPL-2.0 AND MIT AND Apache-2.0 AND LGPL-3.0 + depends = glib2 + depends = hicolor-icon-theme + depends = libcap + depends = libsecret + depends = openssl + depends = qt6-5compat + depends = qt6-base + depends = qt6-declarative + depends = qt6-networkauth + depends = qt6-websockets + provides = mozillavpn + source = https://launchpad.net/~mozillacorp/+archive/ubuntu/mozillavpn/+files/mozillavpn_2.24.3-oracular1_amd64.deb + sha256sums = 7239dd77d56250b72c90cf9da8b399a284a24481e1cfd1e51afc7a58ecdd899f + +pkgname = mozillavpn-bin diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000000..a0aeb4a5a457 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +pkg/ +src/ +*.tar.* +debian/ +debian-binary +*.deb diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..dd8243d96eae --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,34 @@ +# Creator: gardenapple <mailbox@appl.garden> + +pkgname=mozillavpn-bin +_pkgname="${pkgname%-bin}" +pkgver=2.24.3 +_ubuntuver=oracular +pkgrel=1 +_origpkgrel=1 +pkgdesc="Fast, secure, and easy to use VPN from the makers of Firefox (Ubuntu PPA binary)" +arch=('x86_64') +url='https://vpn.mozilla.org' +license=('MPL-2.0 AND MIT AND Apache-2.0 AND LGPL-3.0') +depends=('glib2' + 'hicolor-icon-theme' + 'libcap' + 'libsecret' + 'openssl' + 'qt6-5compat' + 'qt6-base' + 'qt6-declarative' + 'qt6-networkauth' + 'qt6-websockets') +provides=("$_pkgname") +source=("https://launchpad.net/~mozillacorp/+archive/ubuntu/mozillavpn/+files/mozillavpn_${pkgver}-${_ubuntuver}${_origpkgrel}_amd64.deb") +sha256sums=('7239dd77d56250b72c90cf9da8b399a284a24481e1cfd1e51afc7a58ecdd899f') + +package() { + cd "$srcdir" + bsdtar -x -f 'data.tar.gz' -C "$pkgdir" + + cd "$pkgdir" + mv lib/{mozilla,mozillavpn} usr/lib/ + rmdir lib +} |