Update to 0.12,6

Signed-off-by: Страхиња Радић <contact@strahinja.org>
This commit is contained in:
Страхиња Радић 2024-03-11 13:00:01 +01:00
parent 3e008fc133
commit cfcb3d7d46
No known key found for this signature in database
GPG key ID: 9D31EA3651E8DF5A
2 changed files with 8 additions and 19 deletions

View file

@ -1,11 +1,11 @@
pkgbase = sled
pkgdesc = Simple text editor
pkgver = 0.12.5
pkgrel = 5
pkgver = 0.12.6
pkgrel = 1
url = https://strahinja.srht.site/sled
arch = x86_64
license = GPL3
source = sled-0.12.5.tar.gz::https://git.sr.ht/~strahinja/sled/archive/v0.12.5.tar.gz
md5sums = bc71a6663167ddd41d4afabdc255e689
source = sled-0.12.6.tar.gz::https://git.sr.ht/~strahinja/sled/archive/v0.12.6.tar.gz
md5sums = cc094877db1e6325c1c37f310e5b6613
pkgname = sled

View file

@ -1,21 +1,15 @@
# Maintainer: Strahinya Radich <contact@strahinja.org>
pkgname=sled
pkgver=0.12.5
pkgrel=5
pkgver=0.12.6
pkgrel=1
pkgdesc="Simple text editor"
arch=('x86_64')
url="https://strahinja.srht.site/sled"
license=('GPL3')
source=("$pkgname-$pkgver.tar.gz::https://git.sr.ht/~strahinja/sled/archive/v$pkgver.tar.gz")
md5sums=('bc71a6663167ddd41d4afabdc255e689')
#checkdepends=(
# 'perl'
# 'expect'
#)
md5sums=('cc094877db1e6325c1c37f310e5b6613')
build() {
# Might need to add --nocheck to makepkg on systems using pacman only
# for test (Alpine)
cd $pkgname-v$pkgver
# Example on how to apply patches: dark theme patch (uncomment last
@ -26,16 +20,11 @@ build() {
# Example on how to disable configuration options: turn off wrap
# (uncomment next line)
#sed -i 's,^\(#define ENABLE_WRAP\),//\1,' config.h
FALLBACKVER=$pkgver-$pkgrel PREFIX="$pkgdir/usr" make -e all
}
#check() {
# cd $pkgname-v$pkgrel
# make test
#}
package() {
#local redo=$(command -v redo || echo ./do)
cd $pkgname-v$pkgver
FALLBACKVER=$pkgver-$pkgrel PREFIX="$pkgdir/usr" make -e install
}