blob: 701b2d73a57ff514fc1166d6ec551b1171f46fbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Contributor: Sherlock-Holo <sherlockya@gmail.com>
pkgname=pvim
pkgver=v0.3.1
pkgrel=1
pkgdesc="a script helps you quickly upload the codes or pictures to vim-cn"
url="https://github.com/Sherlock-Holo/pvim"
arch=('any')
license=('MPL')
depends=('xclip')
makedpends=('git')
source=("git://github.com/Sherlock-Holo/$pkgname.git")
md5sums=('SKIP')
package(){
cd "${pkgname}"
# Install
install -Dm755 $pkgname.sh "${pkgdir}/usr/bin/${pkgname}"
}
|