migrate to new layout

This commit is contained in:
Jenkins
2023-07-22 16:23:20 +02:00
parent 85f0ed5b30
commit cc61d8e542
6 changed files with 57 additions and 37 deletions

View File

@@ -1,4 +0,0 @@
---
label: master

54
.artixlinux/pkgbase.yaml Normal file
View File

@@ -0,0 +1,54 @@
---
pkgbase:
name: hexchat
version: 2.16.1-4
arch:
- x86_64
pkgname:
- hexchat
actions:
addRepo: null
removeRepo: null
triggersBuild: false
triggersRebuild: false
triggersRepoAdd: false
triggersRepoRemove: false
triggersNoCheck: false
repos:
system-goblins:
version: null
packages: []
system-gremlins:
version: null
packages: []
system:
version: null
packages: []
world-goblins:
version: null
packages: []
world-gremlins:
version: null
packages: []
world:
version: 2.16.1-4
packages:
- hexchat-2.16.1-4-x86_64.pkg.tar.zst
lib32-goblins:
version: null
packages: []
lib32-gremlins:
version: null
packages: []
lib32:
version: null
packages: []
galaxy-goblins:
version: null
packages: []
galaxy-gremlins:
version: null
packages: []
galaxy:
version: null
packages: []

3
.gitignore vendored
View File

@@ -13,3 +13,6 @@
pkg/ pkg/
src/ src/
*.service
*.timer
*.socket

View File

@@ -1,33 +0,0 @@
# Maintainer: Nathan <ndowens@artixlinux.org>
# Contributor: TingPing <tingping@tingping.se>
pkgname=hexchat
pkgver=2.16.1
pkgrel=4
pkgdesc='A popular and easy to use graphical IRC (chat) client'
arch=('x86_64')
url='https://hexchat.github.io/'
license=('GPL')
depends=('dbus-glib' 'desktop-file-utils' 'gdk-pixbuf2' 'glib2' 'gtk2'
'libcanberra' 'openssl' 'pango' 'pciutils')
makedepends=('git' 'intltool' 'iso-codes' 'lua' 'meson' 'perl' 'python-cffi')
optdepends=('enchant: Spell check'
'iso-codes: Display language names instead of codes'
'lua: Lua plugin'
'perl: Perl plugin'
'python-cffi: Python plugin')
source=("git+https://github.com/hexchat/hexchat.git#tag=v${pkgver}")
sha256sums=('SKIP')
build() {
artix-meson hexchat build \
-Dwith-lua='lua' \
-Dtext-frontend='true'
ninja -C build
}
package() {
DESTDIR="${pkgdir}" ninja -C build install
}
# vim: ts=2 sw=2 et: