Compare commits
No commits in common. "bb135c477843ae87a23148cf24bbc1a703097130" and "72814fb1bbc29d2fa31002ed1276103ad96dc9e3" have entirely different histories.
bb135c4778
...
72814fb1bb
@ -1,6 +1,6 @@
|
||||
# Maintainer: Dejvino <alarm-packages@dejvino.cz>
|
||||
pkgname=d5o-base
|
||||
pkgver=3
|
||||
pkgver=2
|
||||
pkgrel=0
|
||||
pkgdesc="Base set of tools."
|
||||
arch=(any)
|
||||
@ -9,8 +9,6 @@ depends=(
|
||||
vim
|
||||
htop
|
||||
termite-terminfo
|
||||
git
|
||||
usbutils
|
||||
# base-devel:
|
||||
autoconf
|
||||
automake
|
||||
|
@ -1,12 +0,0 @@
|
||||
#!/hint/bash
|
||||
source /etc/makepkg.conf
|
||||
|
||||
CARCH="aarch64"
|
||||
CHOST="aarch64-pc-linux-gnu"
|
||||
|
||||
#-- Compiler and Linker Flags
|
||||
CPPFLAGS="-D_FORTIFY_SOURCE=2"
|
||||
CFLAGS="-march=armv8-a -mtune=generic -O2 -pipe -fno-plt"
|
||||
CXXFLAGS="-march=armv8-a -mtune=generic -O2 -pipe -fno-plt"
|
||||
LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now"
|
||||
|
@ -1,37 +0,0 @@
|
||||
# source: https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=netevent-git
|
||||
_pkgbase=netevent
|
||||
pkgname=netevent-git
|
||||
pkgver=ddd330f
|
||||
pkgrel=1
|
||||
pkgdesc="Event device viewing/cloning utility"
|
||||
url="https://github.com/Blub/netevent"
|
||||
arch=('aarch64')
|
||||
license=('GPL')
|
||||
depends=()
|
||||
makedepends=('python-docutils')
|
||||
source=("git+https://github.com/Blub/netevent.git")
|
||||
sha256sums=('SKIP')
|
||||
|
||||
CROSS_COMPILING='aarch64-linux-gnu-'
|
||||
|
||||
pkgver() {
|
||||
cd "${srcdir}/netevent"
|
||||
git describe --always
|
||||
}
|
||||
|
||||
prepare() {
|
||||
cd "$srcdir/$_pkgbase"
|
||||
CXX=${CROSS_COMPILING}g++ ./configure --prefix=/usr
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$srcdir/$_pkgbase"
|
||||
sed -i 's/-Werror//' ./Makefile
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/$_pkgbase"
|
||||
make DESTDIR="$pkgdir" install
|
||||
}
|
||||
|
@ -1,38 +0,0 @@
|
||||
_pkgbase=uinput-permfix
|
||||
pkgname=uinput-permfix
|
||||
pkgver=1
|
||||
pkgrel=1
|
||||
pkgdesc="/dev/uinput permissions fix: set owner to 'input' group"
|
||||
url=""
|
||||
arch=('any')
|
||||
license=('GPL')
|
||||
depends=()
|
||||
makedepends=()
|
||||
source=(
|
||||
uinput-permfix.service
|
||||
uinput-permfix.timer
|
||||
uinput-permfix
|
||||
)
|
||||
sha256sums=(
|
||||
ea5a029fe085ed201e7e8015198fd0b27c71808e7ee3640b13552c3d9a20842e
|
||||
2acdfc8d85c1c57557127b856b069c02aafe2b8793a644ab1fc241a8a92fb084
|
||||
b7c3c491689f10a99e882dfd7206ea91406b196e431dca447ebb088e094cbcfc
|
||||
)
|
||||
|
||||
package() {
|
||||
install -D -m644 "$srcdir"/uinput-permfix.service \
|
||||
"$pkgdir"/etc/systemd/system/uinput-permfix.service
|
||||
install -D -m644 "$srcdir"/uinput-permfix.timer \
|
||||
"$pkgdir"/etc/systemd/system/uinput-permfix.timer
|
||||
install -D -m755 "$srcdir"/uinput-permfix \
|
||||
"$pkgdir"/usr/local/sbin/uinput-permfix
|
||||
}
|
||||
|
||||
post_install() {
|
||||
systemctl enable --now uinput-permfix.timer
|
||||
}
|
||||
|
||||
pre_remove() {
|
||||
systemctl disable uinput-permfix.timer
|
||||
}
|
||||
|
@ -1,5 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
chown root:input /dev/uinput
|
||||
chmod g+rw /dev/uinput
|
||||
|
@ -1,5 +0,0 @@
|
||||
[Unit]
|
||||
Description=UInput Permfix
|
||||
[Service]
|
||||
Type=oneshot
|
||||
ExecStart=/usr/local/sbin/uinput-permfix
|
@ -1,7 +0,0 @@
|
||||
[Unit]
|
||||
Description=UInput Permfix
|
||||
[Timer]
|
||||
OnBootSec=1min
|
||||
OnUnitActiveSec=2min
|
||||
[Install]
|
||||
WantedBy=timers.target
|
Loading…
Reference in New Issue
Block a user