This commit is contained in:
20
.gitea/workflows/build.yml
Normal file
20
.gitea/workflows/build.yml
Normal 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
23
PKGBUILD
Normal 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:
|
||||
Reference in New Issue
Block a user