mirror of
https://github.com/archlinux/aur.git
synced 2026-03-14 23:16:48 +01:00
[lilac] updated to 2.13.0-3
This commit is contained in:
parent
4711183787
commit
1153bf2721
2 changed files with 16 additions and 9 deletions
5
.SRCINFO
5
.SRCINFO
|
|
@ -1,10 +1,11 @@
|
|||
pkgbase = filebrowser-bin
|
||||
pkgdesc = Web File Manager which can be used as a middleware or standalone app.
|
||||
pkgver = 2.13.0
|
||||
pkgrel = 1
|
||||
pkgrel = 3
|
||||
url = https://github.com/filebrowser/filebrowser
|
||||
install = filebrowser-bin.install
|
||||
arch = x86_64
|
||||
arch = aarch64
|
||||
license = Apache
|
||||
provides = filebrowser
|
||||
conflicts = filebrowser
|
||||
|
|
@ -16,6 +17,8 @@ pkgbase = filebrowser-bin
|
|||
sha256sums = 1fc20cab3a7d67d7997126a98dd151a362dc4600201ca37fd608b959d25985db
|
||||
source_x86_64 = linux-amd64-filebrowser-2.13.0.tar.gz::https://github.com/filebrowser/filebrowser/releases/download/v2.13.0/linux-amd64-filebrowser.tar.gz
|
||||
sha256sums_x86_64 = e0b6ce6588446e93246b960e64884aa6bb2d1424879f3b57c44be41ce54ea834
|
||||
source_aarch64 = linux-aarch64-filebrowser-2.13.0.tar.gz::https://github.com/filebrowser/filebrowser/releases/download/v2.13.0/linux-arm64-filebrowser.tar.gz
|
||||
sha256sums_aarch64 = 658e9e04a2dd07e025a98d9b05f92b4cce797d10798af66e46be01960fce9c94
|
||||
|
||||
pkgname = filebrowser-bin
|
||||
|
||||
|
|
|
|||
20
PKGBUILD
20
PKGBUILD
|
|
@ -2,30 +2,34 @@
|
|||
# Contributor: Sherlock Holo <sherlockya(at)gmail.com>
|
||||
pkgname=filebrowser-bin
|
||||
pkgver=2.13.0
|
||||
pkgrel=1
|
||||
pkgrel=3
|
||||
pkgdesc="Web File Manager which can be used as a middleware or standalone app."
|
||||
arch=('x86_64')
|
||||
arch=('x86_64' 'aarch64')
|
||||
url="https://github.com/filebrowser/filebrowser"
|
||||
license=('Apache')
|
||||
#depends=('glibc')
|
||||
provides=("filebrowser")
|
||||
conflicts=("filebrowser")
|
||||
install="$pkgname.install"
|
||||
install="${pkgname}.install"
|
||||
|
||||
source=('filebrowser@.service' 'filebrowser-bin.install'
|
||||
'https://raw.githubusercontent.com/hacdias/filebrowser/master/LICENSE')
|
||||
|
||||
source_x86_64=(linux-amd64-filebrowser-$pkgver.tar.gz::https://github.com/filebrowser/filebrowser/releases/download/v$pkgver/linux-amd64-filebrowser.tar.gz)
|
||||
source_x86_64=("linux-amd64-filebrowser-${pkgver}.tar.gz::https://github.com/filebrowser/filebrowser/releases/download/v${pkgver}/linux-amd64-filebrowser.tar.gz")
|
||||
source_aarch64=("linux-aarch64-filebrowser-${pkgver}.tar.gz::https://github.com/filebrowser/filebrowser/releases/download/v${pkgver}/linux-arm64-filebrowser.tar.gz")
|
||||
|
||||
sha256sums=('79a1fdb1f0b26f211242f1fdb6f3478a56890a721fe324ea7ade2e8f9a351b38'
|
||||
'8a423af0707ac37b15ca425ec097b3d98aecd08238f7599ae9dfcce31c8cbb32'
|
||||
'1fc20cab3a7d67d7997126a98dd151a362dc4600201ca37fd608b959d25985db')
|
||||
sha256sums_x86_64=('e0b6ce6588446e93246b960e64884aa6bb2d1424879f3b57c44be41ce54ea834')
|
||||
sha256sums_aarch64=('658e9e04a2dd07e025a98d9b05f92b4cce797d10798af66e46be01960fce9c94')
|
||||
|
||||
|
||||
|
||||
|
||||
package() {
|
||||
install -Dm644 filebrowser@.service ${pkgdir}/usr/lib/systemd/system/filebrowser@.service
|
||||
install -Dm755 LICENSE ${pkgdir}/usr/share/licenses/filebrowser-bin/LICENSE
|
||||
install -Dm755 $srcdir/filebrowser ${pkgdir}/usr/bin/filebrowser
|
||||
install -Dm644 filebrowser@.service "${pkgdir}/usr/lib/systemd/system/filebrowser@.service"
|
||||
install -Dm755 LICENSE "${pkgdir}/usr/share/licenses/filebrowser-bin/LICENSE"
|
||||
install -Dm755 "${srcdir}/filebrowser" "${pkgdir}/usr/bin/filebrowser"
|
||||
}
|
||||
|
||||
# vim set: ts=4 sw=4 et:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue