Package Details: tidy-html5-git latest-2

Git Clone URL: https://aur.archlinux.org/tidy-html5-git.git (read-only, click to copy)
Package Base: tidy-html5-git
Description: A tool to tidy down your HTML5 code to a clean style
Upstream URL: https://www.html-tidy.org/
Licenses: custom
Conflicts: tidy-html5, tidyhtml
Provides: tidy, tidyhtml
Submitter: bugix
Maintainer: plp
Last Packager: plp
Votes: 18
Popularity: 0.032761
First Submitted: 2011-11-23 10:48 (UTC)
Last Updated: 2024-05-31 08:05 (UTC)

Dependencies (2)

Required by (450)

Sources (1)

Latest Comments

« First ‹ Previous 1 2 3 Next › Last »

<deleted-account> commented on 2015-07-01 12:02 (UTC)

tidy-html5 5.0.0 now provides "tidy" binary instead of "tidy5" and conflicts with old tidyhtml package from official repos

arthru commented on 2015-05-04 14:47 (UTC)

Indeed, the latest tags on tidy-html5 repo made invalid version. So I just used @cirk2 proposal. Please consider using https://aur.archlinux.org/packages/tidy-html5 package for the latest tagged version.

cirk2 commented on 2015-05-01 08:11 (UTC)

Your pkgver() creates invalid versions (Hyphens are not allowed) Try: echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD) or: echo 5.0.0.git_$(git rev-list --count HEAD).$(git rev-parse --short HEAD)

arthru commented on 2015-03-25 09:17 (UTC)

@yan12125 : I've finally found a version somewhere in the code, so I set that and appended git revision...

arthru commented on 2015-03-19 19:47 (UTC)

Well, the difficult thing is that there is no a upstream version for that...

yan12125 commented on 2015-03-19 18:52 (UTC)

Please add the pkgver() function.

arthru commented on 2015-03-04 14:50 (UTC)

I've adopted and updated the package. Enjoy !

bugix commented on 2015-03-01 11:04 (UTC)

Thanks. Please adopt if you like.

erholst commented on 2015-02-28 20:10 (UTC)

It's now using cmake: #-------------------- # Maintainer: Martin Imobersteg <martin.imobersteg@gmail.com> pkgname=tidy-html5-git name=tidy-html5 pkgver=4.9.17 pkgrel=1 pkgdesc="A tool to tidy down your HTML5 code to a clean style" url="https://github.com/w3c/tidy-html5" license=('custom') arch=('i686' 'x86_64') depends=() makedepends=('git' 'cmake') conflicts=('tidyhtml') provides=('tidyhtml') replaces=('tidyhtml') source=('git://github.com/w3c/tidy-html5.git') md5sums=('SKIP') build() { cd "$srcdir/$name/build/cmake" cmake ../.. -DCMAKE_INSTALL_PREFIX=/usr make } package() { cd "$srcdir/$name/build/cmake" make DESTDIR="$pkgdir/" install install -Dm644 ../../LICENSE.md $pkgdir/usr/share/licenses/$name/LICENSE.md } #--------------------

bugix commented on 2013-11-18 09:04 (UTC)

I updated the PKGBUILD to the new git-package style. Won't change too much probably.