23 lines
482 B
Bash
23 lines
482 B
Bash
# Maintainer: Michał <ash8820@proton.me>
|
|
|
|
pkgname=euri-lsb-release
|
|
pkgver=2.0
|
|
pkgrel=1
|
|
pkgdesc='Euri Linux LSB release file'
|
|
arch=('any')
|
|
url="https://antergos-nas.taild4360b.ts.net/Euri-Linux"
|
|
license=('GPL2')
|
|
conflicts=('lsb-release')
|
|
replaces=('lsb-release')
|
|
provides=('lsb-release')
|
|
|
|
package() {
|
|
install -dm755 "$pkgdir/etc"
|
|
cat > "$pkgdir/etc/lsb-release" << EOF
|
|
DISTRIB_ID="Euri"
|
|
DISTRIB_RELEASE="rolling"
|
|
DISTRIB_DESCRIPTION="Euri Linux"
|
|
DISTRIB_CODENAME=euri
|
|
EOF
|
|
}
|