2
0
mirror of https://github.com/Revertron/Alfis synced 2024-11-18 21:26:38 +00:00

Switch config ext to "conf"

This commit is contained in:
nxshock 2021-04-03 17:50:27 +05:00
parent 5749e93aa3
commit 9029d88707

View File

@ -6,12 +6,12 @@ arch=('x86_64')
license=('AGPL3') license=('AGPL3')
url='https://github.com/Revertron/Alfis' url='https://github.com/Revertron/Alfis'
depends=('webkit2gtk') depends=('webkit2gtk')
backup=("etc/$pkgname.toml") backup=("etc/$pkgname.conf")
source=("https://github.com/Revertron/Alfis/releases/download/v${pkgver}/alfis-linux-amd64-v${pkgver}.zip") source=("https://github.com/Revertron/Alfis/releases/download/v${pkgver}/alfis-linux-amd64-v${pkgver}.zip")
sha256sums=('SKIP') sha256sums=('SKIP')
package() { package() {
cd "$srcdir" cd "$srcdir"
install -Dm 755 "$pkgname" "$pkgdir/usr/bin/$pkgname" install -Dm 755 "$pkgname" "$pkgdir/usr/bin/$pkgname"
install -Dm 644 "$pkgname.toml" "$pkgdir/etc/$pkgname.toml" install -Dm 644 "$pkgname.conf" "$pkgdir/etc/$pkgname.conf"
} }