Package Details: bootstrap-studio 6.5.1-1

Git Clone URL: https://aur.archlinux.org/bootstrap-studio.git (read-only, click to copy)
Package Base: bootstrap-studio
Description: Bootstrap Studio is a powerful tool which web developers and designers use to create layouts and fully functional websites using the Bootstrap framework.
Upstream URL: https://bootstrapstudio.io/
Keywords: bootstrap studio
Licenses: custom
Submitter: tata
Maintainer: rotzelbart
Last Packager: rotzelbart
Votes: 9
Popularity: 0.000000
First Submitted: 2018-04-18 13:45 (UTC)
Last Updated: 2023-10-12 11:07 (UTC)

Latest Comments

1 2 3 4 5 Next › Last »

rotzelbart commented on 2023-09-05 09:05 (UTC)

Hello and a good day. I have taken maintainership of the package and updated it to the latest version. Enjoy!

streetipr commented on 2023-01-27 20:36 (UTC) (edited on 2023-01-27 20:39 (UTC) by streetipr)

@TechVio latest app version is 6.3.1

also the source url of AppImage has changed, new URL:

https://releases.bootstrapstudio.io/${pkgver}/Bootstrap%20Studio.AppImage

sha256sum of AppImage version 6.3.1:

09b0b210300037a7d12ae7888e33bdaa289b1cfbbb24103ae36487dfed98fa9b

TechVio commented on 2022-01-23 11:20 (UTC)

@chn The app is outdated, this is an updated version of PKGBUILD:

# Maintainer: chn <g897331845@gmail.com>
# Contributor: Hunter Wittenborn <git@hunterwittenborn.me>
# Contributor: Alfin Bakhtiar Ilhami <alfin at nuclea dot id>
# Contributor: Jan-Tarek Butt <tarek at ring0 dot de>

pkgname=bootstrap-studio
pkgver=5.9.1
pkgrel=1
pkgdesc="Bootstrap Studio is a powerful tool which web developers and designers use to create layouts and fully functional websites using the Bootstrap framework."
arch=("x86_64")
license=("custom")
url="https://bootstrapstudio.io/"

source=("https://bootstrapstudio.io/releases/desktop/${pkgver}/Bootstrap%20Studio.AppImage"
                "bstudio.desktop")
sha256sums=('cd2a3aab2bcd2e459bf1f2a9ed77451c7062604f22055caf2da83221d7fe3a16'
            'e1c1b0d4b24658fc0ead611cb002dcde431e30256cb8fd0dffb3cfc76f24db84')
prepare() {
    # Extract AppImage
    echo "Extracting AppImage..."
    mv "Bootstrap%20Studio.AppImage" "Bootstrap Studio.AppImage"
    chmod +x "Bootstrap Studio.AppImage"
    ./"Bootstrap Studio.AppImage" --appimage-extract &> /dev/null
}

package() {
    # Copy package files
        echo "Copying package files..."
    mkdir -p "${pkgdir}/opt/bootstrap-studio"
    cp -Lr "${srcdir}/squashfs-root" "${pkgdir}/opt/bootstrap-studio"
    # Set perms
        chmod a+rx "${pkgdir}/opt/bootstrap-studio/" -R

    # Add package to /usr/bin/
    mkdir -p "${pkgdir}/usr/bin"
        printf '#!/bin/bash\n\n/opt/bootstrap-studio/squashfs-root/AppRun' | tee "${pkgdir}/usr/bin/bootstrap-studio" &> /dev/null
        chmod +x "${pkgdir}/usr/bin/bootstrap-studio"

    # Copy .desktop file
    mkdir -p "${pkgdir}/usr/share/applications"
    cp -Lr "${srcdir}/bstudio.desktop" "${pkgdir}/usr/share/applications/"

    # Copy icons
    mkdir -p "${pkgdir}/usr/share/icons/hicolor/"{128x128,192x192,256x256,512x512}"/apps/"
    for i in 128x128 192x192 256x256 512x512; do
        cp -Lr "${srcdir}/squashfs-root/usr/share/icons/hicolor/0x0/apps/bstudio.png" "${pkgdir}/usr/share/icons/hicolor/${i}/apps/"
    done
}

fsociety3765 commented on 2021-11-30 09:31 (UTC)

@chn Thanks for taking a look. Must have been a problem on my local machine then. I cleared my paru cache and it worked fine after that. I'll remember to try that first next time I have problems. Thanks.

chn commented on 2021-11-26 17:36 (UTC)

@fsociety3756 I have double-checked the checksum, there is no problom. Could you please try again?

fsociety3765 commented on 2021-11-26 17:31 (UTC)

I'm getting failed validity check on this release. The package won't update.

chn commented on 2021-08-06 09:54 (UTC)

@mys31f updated

mys31f commented on 2021-08-06 09:25 (UTC) (edited on 2021-08-06 09:25 (UTC) by mys31f)

I couldn't get the package to build at all, curl keeps throwing me error 3 as seen here below, is there something I would need to change in the PKGBUILD?

[mys31f@RubyKurosawa ~]$ paru -S bootstrap-studio
:: Löse Abhängigkeiten auf…
:: Berechne Konflikte…
error: Konnte Datei /var/lib/pacman/local/davinci-resolve-17.2.2-1/desc nicht öffnen: Datei oder Verzeichnis nicht gefunden
:: Berechne interne Konflikte…

Aur (1) bootstrap-studio-5.7.1-1

:: Mit der Überprüfung fortfahren? [J/n]:

:: Lädt PKGBUILDs herunter…
PKGBUILDs sind aktuell
nichts Neues zu überprüfen
frage devel info ab…
==> Erstelle Paket: bootstrap-studio 5.7.1-1 (Fr 06 Aug 2021 16:21:09 +07)
==> Empfange Quellen...
-> Lade Bootstrap Studio.AppImage herunter...
curl: (3) URL using bad/illegal format or missing URL
==> FEHLER: Fehler beim Download von https://bootstrapstudio.io/releases/desktop/5.7.1/Bootstrap Studio.AppImage
Breche ab...
Fehler: Quelldateien für ‚bootstrap-studio-5.7.1-1‘ konnten nicht heruntergeladen werden: 
Fehler: Pakete konnten nicht gebaut werden: bootstrap-studio-5.7.1-1

hwittenborn commented on 2021-05-25 07:15 (UTC)

@Zeros @lightsaber Looked like a permissions issue, everything should be working now.