Initial commit
Some checks failed
Build package / build-package (push) Failing after 1m24s

This commit is contained in:
2024-10-18 16:52:52 +00:00
commit 18c6e4d835
2 changed files with 43 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
name: Build package
on: [push]
jobs:
build-package:
runs-on: imgbuilder
container:
image: gitea.konchin.com/image/archmakepkg
credentials:
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
env:
MINIO_ACCESSKEY: ${{ secrets.MINIO_ACCESSKEY }}
MINIO_SECRETKEY: ${{ secrets.MINIO_SECRETKEY }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build package
run: /script/run.sh

23
PKGBUILD Normal file
View File

@@ -0,0 +1,23 @@
# Maintainer: allddd <allddd (at) proton (dot) me>
pkgname=vim-plug
pkgver=0.14.0
pkgrel=1
pkgdesc='A vim plugin manager'
arch=('any')
url='https://github.com/junegunn/vim-plug'
license=('MIT')
depends=('vim')
provides=('vim-plug')
conflicts=('vim-plug')
source=("${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz")
sha256sums=('a8e86db8c62deefa70057fd0abc81bc20e270ab9811eee3ccbe9ceafd3d8a876')
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
install -Dm644 plug.vim -t "${pkgdir}/usr/share/vim/vimfiles/autoload/"
install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}/"
install -Dm644 doc/plug.txt -t "${pkgdir}/usr/share/doc/${pkgname}/"
}
# vim: ts=4 sw=4 et: