惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Y
Y Combinator Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
博客园 - 三生石上(FineUI控件)
Hugging Face - Blog
Hugging Face - Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
罗磊的独立博客
博客园_首页
量子位
雷峰网
雷峰网
GbyAI
GbyAI
小众软件
小众软件
酷 壳 – CoolShell
酷 壳 – CoolShell
D
DataBreaches.Net
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The Cloudflare Blog
IT之家
IT之家
WordPress大学
WordPress大学
人人都是产品经理
人人都是产品经理
Apple Machine Learning Research
Apple Machine Learning Research
P
Proofpoint News Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 聂微东

AUR Newest Packages

AUR (en) - linuxqq-clipsync-git AUR (en) - libtslitex-git AUR (en) - libtslitex-git AUR (en) - carton-appimage AUR (en) - veila-git AUR (en) - veila-bin AUR (en) - vigil-baseline AUR (en) - byedroid AUR (en) - neovim-base16-git AUR (en) - pirata AUR (en) - rpi-imager-git-non-root AUR (en) - python-fastapi-sso AUR (en) - tmux-ai-titles AUR (en) - zeed-bin AUR (en) - bclone-bin AUR (en) - dwl-git-azerty AUR (en) - auggie-bin AUR (en) - libspatialaudio-git AUR (en) - libspatialaudio AUR (en) - miniupnpd-iptables-legacy AUR (en) - miniupnpd-nft AUR (en) - jeeves-bin AUR (en) - opennow AUR (en) - rotki AUR (en) - kapi-bin AUR (en) - classfi-bin AUR (en) - classfi-git AUR (en) - classfi AUR (en) - giff-git AUR (en) - budget-tracker-bin
AUR (en) - libvterm-vwm
2026-06-15 · via AUR Newest Packages

1. I couldn't seem to download the source from the PKBUILD, so I tried changing the URL to be more similar to other packages. It worked and passed the checksum also: #source=('http://superb-dca2.dl.sourceforge.net/project/libvterm/libvterm-0.99.7.tar.gz') source=('http://downloads.sourceforge.net/project/libvterm/libvterm-0.99.7.tar.gz') # Changed: superb-dca2.dl TO downloads 2. For some reason, the pkg installed no files. I compared it to other PKBUILDs and the variables were different, so I made them the same: # install -m644 -D vterm.h $startdir/pkg/usr/include/vterm.h || return 1 # install -m755 -D libvterm.so $startdir/pkg/usr/lib/libvterm.so || return 1 install -m644 -D vterm.h $pkgdir/usr/include/vterm.h || return 1 install -m755 -D libvterm.so $pkgdir/usr/lib/libvterm.so || return 1 # Changed: $startdir/pkg/ TO $pkgdir/ in both lines. After these two changes, I was finally able to build the "vwm" pkg which depends on this one. :)

I adopted this and updated it using your diff...

Here's a unified diff to fix some breakage probably caused by makepkg changes. --- PKGBUILD.old 2014-03-29 01:13:50.523974423 -0700 +++ PKGBUILD 2014-03-29 01:18:36.311934887 -0700 @@ -7,14 +7,17 @@ url="http://libvterm.sourceforge.net" license=('GPLv2') source=('http://downloads.sourceforge.net/project/libvterm/libvterm-0.99.7.tar.gz') +md5sums=('ac68b77eb33086f7532ab303245efb77') build() { cd "$srcdir/$pkgname" make || return 1 - install -m644 -D vterm.h $startdir/pkg/usr/include/vterm.h || return 1 - install -m755 -D libvterm.so $startdir/pkg/usr/lib/libvterm.so || return 1 - } -md5sums=('ac68b77eb33086f7532ab303245efb77') +package() { + cd "$srcdir/$pkgname" + install -m644 -D vterm.h $pkgdir/usr/include/vterm.h || return 1 + install -m755 -D libvterm.so $pkgdir/usr/lib/libvterm.so || return 1 +} +