blob: 13d9b2e6620ebdcb8f361b173fcc38013163a1c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>
pkgname=sqm-scripts
pkgver=1.7.2
pkgrel=1
pkgdesc="SQM scripts traffic shaper"
arch=('any')
url="https://github.com/tohojo/sqm-scripts"
license=('GPL-2.0-or-later')
depends=('sh' 'iproute2')
makedepends=('systemd') # workaround: otherwise sqm@.service ends up at the wrong directory
source=("$pkgname-$pkgver.tar.gz::https://github.com/tohojo/sqm-scripts/archive/v$pkgver.tar.gz")
sha256sums=('aed4642ab716012e9f90862061217207eb052ed453ccb05244fb1ab8e73fd258')
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
}
|