summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 81801ed0e162fd9769cd316d79d649531a0a72cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Maintainer: Sebastian Korotkiewicz <skorotkiewicz@gmail.com>

pkgname=modern-beep
pkgver=0.1.0
pkgrel=2
pkgdesc="A modern Rust alternative to the classic \`beep\` command with support for notifications, webhooks, and remote audio playback"
arch=('x86_64')
url="https://github.com/skorotkiewicz/modern-beep"
license=('MIT')
depends=('glibc')
conflicts=('beep')
provides=('beep')
options=(!strip)
source_x86_64=("beep-${pkgver}-linux-x86_64.tar.gz::https://github.com/skorotkiewicz/modern-beep/releases/download/v${pkgver}/beep-linux-x86_64.tar.gz")
sha256sums_x86_64=('SKIP')

package() {
    cd "$srcdir"
    install -Dm755 "beep" "$pkgdir/usr/bin/beep"
}