blob: efb7a4358e64bf4cf6a60b2a4f7fb830fc7b26f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
pkgname='libretools-netprepare'
pkgver=1.0
license=('GPL')
url='https://parabola.nu'
pkgrel=1
arch=(any)
prepare() {
cd "$srcdir"
curl https://repo.parabola.nu/ > index.html
}
package() {
cd "$srcdir"
install -Dm644 index.html "$pkgdir"/usr/share/$pkgname/index.html
}
|