blob: 69794c159caaaa0d5bee98bc91ea10085143a568 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: MisconceivedSec (@misconceivedsec)
pkgname=setcustomres
pkgver=2.3
pkgrel=2
pkgdesc="A tool that summarizes the process of setting a custom resolution to a monitor using xrandr."
arch=('any')
url="https://github.com/MisconceivedSec/setcustomres"
license=('GPL3')
depends=('libxrandr' 'awk')
provides=('setcustomres')
conflicts=('setcustomres')
source=("v$pkgver.tar.gz::https://github.com/MisconceivedSec/setcustomres/archive/refs/tags/v$pkgver.tar.gz")
md5sums=('9cca7b0a00caad1ca608fbfc14997664')
package()
{
# Install Script
install -Dm755 $srcdir/setcustomres-$pkgver/$pkgname.sh "$pkgdir"/usr/bin/$pkgname
# Install License
install -Dm644 $srcdir/setcustomres-$pkgver/LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|